Last active
October 15, 2015 14:09
-
-
Save hail2u/10d191476890758f5a3e to your computer and use it in GitHub Desktop.
インクルードしてセクションにくくってくれて適宜`hr`で戻してくれるみたいなMarkdownプリプロセッサーが欲しい
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 characters
# Bar | |
This paragraph comes from "bar". |
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 characters
# Buz | |
This paragraph comes from "buz". |
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 characters
# Foo | |
This paragraph comes from "foo". | |
<!-- inc bar.md --> | |
<!-- inc buz.md --> | |
This paragraph comes from "foo". |
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 characters
<h1>Foo</h1> | |
<p>This paragraph comes from "foo".</p> | |
<section> | |
<h1>Bar</h1> | |
<p>This paragraph comes from "bar".</p> | |
</section> | |
<section> | |
<h1>Buz</h1> | |
<p>This paragraph comes from "buz".</p> | |
</section> | |
<hr> | |
<p>This paragraph comes from "foo".</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment