search for: pegdown

Displaying 4 results from an estimated 4 matches for "pegdown".

2010 May 03
5
New parser-based Markdown implementation for Java
Markdowners, just a short heads-up to a newly released Markdown implementation: "pegdown" (http://github.com/sirthias/pegdown) implements a Java Markdown-to-HTML processor based on a PEG parser with the grammar being based on John MacFarlanes C implementation "peg-markdown". pegdown uses "parboiled" (http://www.parboiled.org) for the actual parsing work and, a...
2010 Dec 15
3
my scala markdown implementation
Hi, I have written my own implementation of markdown in Scala. I only later realized there is already one ( <http://tristanhunt.com/projects/knockoff/> ), but I put quite some work into mine and I think it is never bad to have alternatives, so I wanted to release it anyway. I want to use the same BSD License as the original markdown, but before I put it out into the wild I wanted to ask
2011 Jun 28
3
PEG Markdown Highlight
Dear fellow Markdown enthusiasts, As you all might know, Markdown is a highly context sensitive language that the (often regex-based) syntax highlighting mechanisms in existing editors struggle to keep up with. I have taken John MacFarlane's excellent peg-markdown compiler and modified its parser to function as an interpreter for syntax highlighting purposes. The end result is a
2012 Dec 22
2
Tools for converting markdown to other formats with templating support
...it would be nice just as a cross-platform fallback for where PDFs are not supported). I've also spent several hours searching for tools or libraries that do all of this out of the box and found nothing (which leads me to believe it doesn't exist). My current approach is likely to be taking Pegdown (a java markdown library) and writing new renderers (it exposes the AST directly), but that's obviously a substantial amount of work. I'd be grateful for any pointers people have as alternatives, or perhaps someone knows of a tool? Oh and I know this is the markdown list, but if the above...