summaryrefslogtreecommitdiff
path: root/Libraries/LibMarkdown/CodeBlock.cpp
AgeCommit message (Collapse)Author
2020-05-30LibMarkdown: Change internal MD API to return OwnPtrsFalseHonesty
Previously, all Markdown blocks had a virtual parse method which has been swapped out for a static parse method returning an OwnPtr of that block's type. The Text class also now has a static parse method that will return an Optional<Text>.
2020-05-05LibMarkdown: Escape HTML entities in textLinus Groh
2020-05-05LibMarkdown: Use escape_html_entities() from AK/StringLinus Groh
2020-04-28LibMarkdown: Drop MD prefixes and move into "Markdown" namespace :^)Andreas Kling