Revisions
-
zhuochun revised this gist
Mar 20, 2015 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # [Markdown-Writer for Atom](https://github.com/zhuochun/md-writer) List all posts, tags and categories in Jekyll. Octopress users: if you found `"` is escaped in the generated JSON file, please change them to `\"`. Refer to [this issue](https://github.com/zhuochun/md-writer/issues/36). -
zhuochun revised this gist
Aug 14, 2014 . 3 changed files with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ --- layout: null --- { "categories": [ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ --- layout: null --- { "posts": [ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ --- layout: null --- { "tags": [ -
zhuochun revised this gist
Aug 2, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ layout: none {% for post in site.posts %} { "title": "{{ post.title | xml_escape }}", "url": "{{ site.url }}{{ post.url }}", "date": "{{ post.date | date_to_xmlschema }}" }{% unless forloop.last %},{% endunless %} {% endfor %} -
zhuochun created this gist
Jul 25, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ --- layout: none --- { "categories": [ {% for category in site.categories %} "{{ category | first }}"{% unless forloop.last %},{% endunless %} {% endfor %} ] } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ --- layout: none --- { "posts": [ {% for post in site.posts %} { "title": "{{ post.title | xml_escape }}", "url": "{{site.url}}{{ post.url }}", "date": "{{ post.date | date_to_xmlschema }}" }{% unless forloop.last %},{% endunless %} {% endfor %} ] } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ --- layout: none --- { "tags": [ {% for tag in site.tags %} "{{ tag | first }}"{% unless forloop.last %},{% endunless %} {% endfor %} ] }