marked 0.2.2 marked: ^0.2.2 copied to clipboard
A simple Markdown parser for Dart. Create your own custom Markdown syntax.
0.2.2 #
Changed:
- Expression object
Match
changed toRegExpMatch
, to access named groups
0.2.1 #
Added:
- Basic placeholder alternative, for single token replacements
0.2.0 #
BREAKING CHANGES:
- The markdown was refactored to process the input sequentially using a start and end token, instead of a single matching RegExp
- Contains escape sequences for the start and end tokens, so that they can be used in the input text
- The API was all changed to be more consistent and to allow for more flexibility
- Added many other placeholder alternatives
0.1.0 #
Added:
- Markdown escaping, see escape example Changed:
- Renamed
placeholder.regex
toplaceholder.pattern
- Enclosed pattern, a
*
won't match**
anymore because it must be a single match Removed: Markdown.applyAll
method, now you must instantiate aMarkdown
object and callapply
method due to escaping
0.0.2 #
Added:
- Code Documentation
- Create a Markdown from a map, support for all placeholder alternatives: Markdown.map
- Markdown Placeholder alternative: MarkdownPlaceholder.regexp
- Apply placeholder of a Markdown in a specific set of names
0.0.1 #
Initial release: Marked