Project

pfm

0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
A few extensions of GitHub Flavored Markdown syntax
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 0.2
 Project Readme

Panda Flavored Markdown

A few clever extensions to GitHub Flavored Markdown syntax.

  • Code block includes
  • Pandoc-style footnotes

Code Block includes

Include as a code block all of the content from another file (paths
relative to PWD). The code block type will be inferred from the
file extension when possible.

```path/to/source.coffee```

Include only a selection of the file content:


```path/to/source.coffee#L33-42```

Pandoc's footnote syntax

This text:

Sometimes you wish to have a footnote, but GFM[^gfm] doesn't have a syntax
for it.  Pandoc[^pandoc] has a nice syntax as illustrated here.


[^gfm]:  GitHub Flavored Markdown.

[^pandoc]:  [Pandoc](http://johnmacfarlane.net/pandoc/) is the swiss-army
knife of document conversion tools.

The location of the footnote definitions doesn't matter, as they will be
collected and appended to a Notes section at the end of the document.

Processes to this markdown:

Sometimes you wish to have a footnote, but GFM<sup><a name="__gfm" href="#gfm">1</a>.</sup> doesn't have a syntax
for it.  Pandoc<sup><a name="__pandoc" href="#pandoc">2</a>.</sup> has a nice syntax as illustrated here.


The location of the footnote definitions doesn't matter, as they will be
collected and appended to a Notes section at the end of the document.

# Notes

<a name="gfm" href="#__gfm">1 &#8617;</a>.  GitHub Flavored Markdown.

<a name="pandoc" href="#__pandoc">2 &#8617;</a>.  [Pandoc](http://johnmacfarlane.net/pandoc/) is the swiss-army
knife of document conversion tools.