pegdown icon indicating copy to clipboard operation
pegdown copied to clipboard

A pure-Java Markdown processor based on a parboiled PEG parser supporting a number of extensions

Results 86 pegdown issues
Sort by recently updated
recently updated
newest added

| Pegdown version | JDK Version | | :-: | :-: | | 1.5.0 | 8 | There are two issues. 1. When a header contains some special character, `ANCHORLINKS`...

![default](https://user-images.githubusercontent.com/10005882/45772866-68cc0300-bc7b-11e8-9be6-9187f1f58d29.png) in BasicParseRunner.java when i debug it is normal, when run it loop the "run" method ![default](https://user-images.githubusercontent.com/10005882/45773033-dc6e1000-bc7b-11e8-8ddb-342aaf3077b8.png) I try to get parboiled-core-1.20 ,bad also

@sirthias , I am in the process of converting our pegdown to flexmark . Struck up on one issue of Confluence wiki link rendering. I need your help in resolving...

Pegdown 1.6.0 has problems rendering nested lists. This issue also occurs in 1.5.0, 1.4.0 and 1.3.0, so it appears to be a long-standing issue. ``` markdown * foo * bar...

Planning to use markdown to specify configuration, which can then be converted into a JSON object. Thoughts?

Hi, I studied Packrat Parsing/PEG a bit. As I saw exponential parsing time, I though that it maybe resolved by packrat parsing. To emulate packrat parsing, I added `@MemoMismatches` to...

It is better to have no escaping, so you can do proper escaping manually. (Just escape the input) Related to #236

## Issue See #234 ## Solution Added command line interface. And a gradle build script (that should be comparable to the SBT build file), that generates a fat jar with...

## Issue see #232 (Cleanup) ## Solution Added missing Overrides fixes #232 ## Disclaimer This code is my original work (or that of my IDE instructed by me 😄 )...

Some highlighting library requires class prefix to follow a specific format (e.g. [PrismJS](http://prismjs.com/)). Allow user to provide a custom class prefix for DefaultVerbatimSerializer without having to reimplement it.