Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
Ben Williams [Fri, 16 Nov 2012 18:50:15 +0000 (13:50 -0500)]
Switch to strong and em implementation based on Tim Pope's.
Seems to fix some problems with mine. Changed so *'s and _'s inside words don't
start emphasis, which is not canonical but everyone seems to like better.
Ben Williams [Thu, 15 Nov 2012 20:48:44 +0000 (15:48 -0500)]
Switch to expression-based folding.
Syntax-based folding was way too slow in very large Markdown files. Add
a new file after/ftplugin/mkd.vim with a foldexpr function to determine
folds. The function is based on Steve Losh's gist at
https://gist.github.com/1038710
Far McKon [Mon, 12 Nov 2012 16:35:00 +0000 (11:35 -0500)]
changed _ syntax, to avoid mid-word underlines starting highlights. Fail case pre-commit would be the string ' - user_account: The default user account' having a highlight start at the _, and never end. Updated match only catches 1 or more whitespaces before underscore, instead of zero or more whitespaces before an underscore
Alex Beal [Wed, 14 Mar 2012 23:02:20 +0000 (17:02 -0600)]
Added a rule that covers "Github Flavored Markdown" (GFM) code blocks
GFM takes three back ticks to start a code block. It can be followed with a word specifying the language. It then ends with three back ticks.
http://github.github.com/github-flavored-markdown/