Skip to content

Commit 4ccbf8e

Browse files
committed
Merge pull request #56 from emacs-jp/packages/index
Add packages/index.md issue #50
2 parents e879d04 + d063532 commit 4ccbf8e

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed

index.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ Emacs と {{ site.title }} についての詳細は [こちら](./about.html)
3434
## コンテンツ
3535

3636
* [{{ site.title }} で管理しているパッケージ](/maintenances/)
37-
* [おすすめ拡張 - git-gutter.el](/packages/vcs/git-gutter.html)
38-
* [おすすめ拡張 - helm-gtags.el](/packages/helm/helm-gtags.html)
37+
* [おすすめパッケージ紹介](/packages/)
3938
* helm とは
4039
* いろいろな日本語入力環境
4140
* Linuxでのbuild方法

packages/helm/helm-ag.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: page
33
title: "helm-ag"
44
description: "The Silver Seacherの helmインタフェース"
5+
package: true
6+
category: "helm"
7+
tags: ["helm"]
58
---
69
{% include JB/setup %}
710

packages/helm/helm-gtags.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: page
33
title: "helm-gtags"
44
description: "GNU Globalの helmインタフェース"
5+
package: true
6+
category: "helm"
7+
tags: ["helm","tagjump"]
58
---
69
{% include JB/setup %}
710

packages/index.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: page
3+
title: 'パッケージ紹介'
4+
descrition: 'package.el でinstallできるおすすめ melpa package紹介'
5+
---
6+
{% include JB/setup %}
7+
8+
Emacs24に標準搭載されている `package.el` を利用してインストール可能なパッケージの中からおすすめのパッケージを紹介します。
9+
10+
{% for page in site.pages %}
11+
{% if page.package %}
12+
13+
* [{{ page.category }} / {{ page.title }}]({{ page.url }})
14+
{% for tag in page.tags %}<span class="label label-info">{{ tag }}</span> {% endfor %}
15+
<br>{{ page.description }}
16+
17+
{% endif %}
18+
{% endfor %}

packages/vcs/git-gutter.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: page
33
title: "git-gutter.el"
44
description: "GitGutterの Emacs版"
5+
package: true
6+
category: "vcs"
7+
tags: ["vcs"]
58
---
69
{% include JB/setup %}
710

0 commit comments

Comments
 (0)