aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/markdown/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Add markdown_escape settingArthurHoaro2017-02-281-7/+20
| | | | | | | | | | | | | 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
* Merge pull request #701 from ArthurHoaro/plugins/md-html-docArthur2016-12-031-0/+17
|\ | | | | Describe markdown HTML rendering and display a warning
| * Describe markdown HTML rendering and display a warningArthurHoaro2016-12-011-0/+17
| | | | | | | | Fixes #688
* | Markdown: fixes feed rendering with nomarkdown tagArthurHoaro2016-11-221-6/+15
|/ | | | | | | | | | | * make sure we match exactly `nomarkdown` tag * pass the whole link data to stripNoMarkdownTag() to: * strip the noMD tag in taglist (array) * strip the tag in tags (string) Fixes #689 tmp
* Update markdown plugin README documentationArthurHoaro2016-03-261-11/+23
| | | | | * Add the `.nomarkdown` section. * Update misleading statements.
* Fixes forced git changesArthurHoaro2016-01-311-51/+51
| | | | Probably related to the introduction of .gitattribute with forced line ending.
* PLUGIN MarkdownArthurHoaro2016-01-031-0/+51
Parse link description in Markdown (HTML) before rendering. * hard remove of Shaarli's HTML before parsing. * Using Parsedown <https://github.com/erusev/parsedown> PHP lib. * Includes basic markdown CSS. * Style: removed 400px height max limit for shaares. * Unit tests.