Skip to content

Instantly share code, notes, and snippets.

@hail2u
Last active October 15, 2015 14:09
Show Gist options
  • Save hail2u/10d191476890758f5a3e to your computer and use it in GitHub Desktop.
Save hail2u/10d191476890758f5a3e to your computer and use it in GitHub Desktop.
インクルードしてセクションにくくってくれて適宜`hr`で戻してくれるみたいなMarkdownプリプロセッサーが欲しい
# Bar
This paragraph comes from "bar".
# Buz
This paragraph comes from "buz".
# Foo
This paragraph comes from "foo".
<!-- inc bar.md -->
<!-- inc buz.md -->
This paragraph comes from "foo".
<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