markdownj
markdownj copied to clipboard
MarkdownJ
Bumps [junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
Fixes #36
```http://markdownj.org``` Did the link fail?
I am interested in adding OSGi metadata to this project, to make it easier to consume in OSGi environments. The changes are built-time only, to ensure that proper metadata is...
"BUY THIS DOMAIN The domain markdownj.org may be for sale by its owner!"
Currently the `MarkdownProcessor` takes in and returns a `String`. This can become very slow if the markdown if very large. Usually the actual markdown is accessed throw some io operation,...
When I try something like this: ``` %%% plugin1 some text %%% %%% plugin2 some text %%% ``` Only first plugin is processed. I must insert some text between plugins...
_From [[email protected]](https://code.google.com/u/107499097463794901986/) on March 03, 2011 10:33:49_ Markdown allows putting emphasis/links/images in titles, for instance: # My **title** or My [title](http://www.google.com) But MarkdownJ does not interpret titles content. _Original issue:...
example: column1|column2 -----|---- value1|value1 value2|value2 value3|value3 code is convert table ``` private TextEditor doTableRules(TextEditor text) { String[] paragraphs; if (text.isEmpty()) { paragraphs = new String[0]; } else { paragraphs =...