aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/plugins/resources
Commit message (Collapse)AuthorAgeFilesLines
* Fix hashtags with markdown escape enabledArthurHoaro2018-08-144-5/+25
| | | | | | They're now transformed to markdown syntax links before processing them through Parsedown. Fixes #1210
* Update parsedown to its latest version instead of fixed 1.6ArthurHoaro2018-03-311-2/+2
|
* Add a whitelist of protocols for URLsArthurHoaro2017-05-252-2/+21
| | | | | | | - for Shaare - for markdown description links and images Not whitelisted protocols will be replaced by `http://`
* Add markdown_escape settingArthurHoaro2017-02-281-3/+3
| | | | | | | | | | | | | This setting allows to escape HTML in markdown rendering or not. The goal behind it is to avoid XSS issue in shared instances. More info: * the setting is set to true by default * it is set to false for anyone who already have the plugin enabled (avoid breaking existing entries) * improve the HTML sanitization when the setting is set to false - but don't consider it XSS proof * mention the setting in the plugin README
* Fix an issue with links not being reversed in code blocksArthurHoaro2016-10-222-0/+48
Fixes #672 + Markdown to HTML unit test