]>
git.immae.eu Git - github/shaarli/Shaarli.git/blob - plugins/markdown/markdown.php
6 * Shaare's descriptions are parsed with Markdown.
10 * If this tag is used on a shaare, the description won't be processed by Parsedown.
12 define('NO_MD_TAG', 'nomarkdown');
15 * Parse linklist descriptions.
17 * @param array $data linklist data.
18 * @param ConfigManager $conf instance.
20 * @return mixed linklist data parsed in markdown (and converted to HTML).
22 function hook_markdown_render_linklist($data, $conf)
24 foreach ($data['links'] as &$value) {
25 if (!empty($value['tags']) && noMarkdownTag($value['tags'])) {
26 $value = stripNoMarkdownTag($value);
29 $value['description'] = process_markdown(
30 $value['description'],
31 $conf->get('security.markdown_escape', true),
32 $conf->get('security.allowed_protocols')
39 * Parse feed linklist descriptions.
41 * @param array $data linklist data.
42 * @param ConfigManager $conf instance.
44 * @return mixed linklist data parsed in markdown (and converted to HTML).
46 function hook_markdown_render_feed($data, $conf)
48 foreach ($data['links'] as &$value) {
49 if (!empty($value['tags']) && noMarkdownTag($value['tags'])) {
50 $value = stripNoMarkdownTag($value);
53 $value['description'] = process_markdown(
54 $value['description'],
55 $conf->get('security.markdown_escape', true),
56 $conf->get('security.allowed_protocols')
64 * Parse daily descriptions.
66 * @param array $data daily data.
67 * @param ConfigManager $conf instance.
69 * @return mixed daily data parsed in markdown (and converted to HTML).
71 function hook_markdown_render_daily($data, $conf)
73 // Manipulate columns data
74 foreach ($data['cols'] as &$value) {
75 foreach ($value as &$value2) {
76 if (!empty($value2['tags']) && noMarkdownTag($value2['tags'])) {
77 $value2 = stripNoMarkdownTag($value2);
80 $value2['formatedDescription'] = process_markdown(
81 $value2['formatedDescription'],
82 $conf->get('security.markdown_escape', true),
83 $conf->get('security.allowed_protocols')
92 * Check if noMarkdown is set in tags.
94 * @param string $tags tag list
96 * @return bool true if markdown should be disabled on this link.
98 function noMarkdownTag($tags)
100 return preg_match('/(^|\s)'. NO_MD_TAG
.'(\s|$)/', $tags);
104 * Remove the no-markdown meta tag so it won't be displayed.
106 * @param array $link Link data.
108 * @return array Updated link without no markdown tag.
110 function stripNoMarkdownTag($link)
112 if (! empty($link['taglist'])) {
113 $offset = array_search(NO_MD_TAG
, $link['taglist']);
114 if ($offset !== false) {
115 unset($link['taglist'][$offset]);
119 if (!empty($link['tags'])) {
120 str_replace(NO_MD_TAG
, '', $link['tags']);
127 * When link list is displayed, include markdown CSS.
129 * @param array $data includes data.
131 * @return mixed - includes data with markdown CSS file added.
133 function hook_markdown_render_includes($data)
135 if ($data['_PAGE_'] == Router
::$PAGE_LINKLIST
136 || $data['_PAGE_'] == Router
::$PAGE_DAILY
137 || $data['_PAGE_'] == Router
::$PAGE_EDITLINK
140 $data['css_files'][] = PluginManager
::$PLUGINS_PATH . '/markdown/markdown.css';
147 * Hook render_editlink.
148 * Adds an help link to markdown syntax.
150 * @param array $data data passed to plugin
152 * @return array altered $data.
154 function hook_markdown_render_editlink($data)
156 // Load help HTML into a string
157 $data['edit_link_plugin'][] = file_get_contents(PluginManager
::$PLUGINS_PATH .'/markdown/help.html');
159 // Add no markdown 'meta-tag' in tag list if it was never used, for autocompletion.
160 if (! in_array(NO_MD_TAG
, $data['tags'])) {
161 $data['tags'][NO_MD_TAG
] = 0;
169 * Remove HTML links auto generated by Shaarli core system.
170 * Keeps HREF attributes.
172 * @param string $description input description text.
174 * @return string $description without HTML links.
176 function reverse_text2clickable($description)
178 $descriptionLines = explode(PHP_EOL
, $description);
179 $descriptionOut = '';
180 $codeBlockOn = false;
183 foreach ($descriptionLines as $descriptionLine) {
184 // Detect line of code: starting with 4 spaces,
185 // except lists which can start with +/*/- or `2.` after spaces.
186 $codeLineOn = preg_match('/^ +(?=[^\+\*\-])(?=(?!\d\.).)/', $descriptionLine) > 0;
187 // Detect and toggle block of code
189 $codeBlockOn = preg_match('/^```/', $descriptionLine) > 0;
191 elseif (preg_match('/^```/', $descriptionLine) > 0) {
192 $codeBlockOn = false;
195 $hashtagTitle = ' title="Hashtag [^"]+"';
196 // Reverse `inline code` hashtags.
197 $descriptionLine = preg_replace(
198 '!(`[^`\n]*)<a href="[^ ]*"'. $hashtagTitle .'>([^<]+)</a>([^`\n]*`)!m',
203 // Reverse all links in code blocks, only non hashtag elsewhere.
204 $hashtagFilter = (!$codeBlockOn && !$codeLineOn) ? '(?!'. $hashtagTitle .')': '(?:'. $hashtagTitle .')?';
205 $descriptionLine = preg_replace(
206 '#<a href="[^ ]*"'. $hashtagFilter .'>([^<]+)</a>#m',
211 $descriptionOut .= $descriptionLine;
212 if ($lineCount++ < count($descriptionLines) - 1) {
213 $descriptionOut .= PHP_EOL;
216 return $descriptionOut;
220 * Remove <br> tag to let markdown handle it.
222 * @param string $description input description text.
224 * @return string $description without <br> tags.
226 function reverse_nl2br($description)
228 return preg_replace('!<br */
?>!im
', '', $description);
232 * Remove HTML spaces ' 
;' auto generated by Shaarli core system.
234 * @param string $description input description text.
236 * @return string $description without HTML links.
238 function reverse_space2nbsp($description)
240 return preg_replace('/(^
| ) 
;/m
', '$1 ', $description);
244 * Replace not whitelisted protocols with http:// in given description.
246 * @param string $description input description text.
247 * @param array $allowedProtocols list of allowed protocols.
249 * @return string $description without malicious link.
251 function filter_protocols($description, $allowedProtocols)
253 return preg_replace_callback(
255 function ($match) use ($allowedProtocols) {
256 return ']('. whitelist_protocols($match[1], $allowedProtocols) .')';
263 * Remove dangerous HTML tags (tags, iframe, etc.).
264 * Doesn't affect <code> content (already escaped by Parsedown).
266 * @param string $description input description text.
268 * @return string given string escaped.
270 function sanitize_html($description)
280 foreach ($escapeTags as $tag) {
281 $description = preg_replace_callback(
282 '#<\s*'. $tag .'[^>]*>(.*</\s*'. $tag .'[^>]*>)?#is',
283 function ($match) { return escape($match
[0]); },
286 $description = preg_replace(
287 '#(<[^>]+)on[a-z]*="?[^ "]*"?#is',
294 * Render shaare contents through Markdown parser.
295 * 1. Remove HTML generated by Shaarli core.
296 * 2. Reverse the escape function.
297 * 3. Generate markdown descriptions.
298 * 4. Sanitize sensible HTML tags for security.
299 * 5. Wrap description in 'markdown
' CSS class.
301 * @param string $description input description text.
302 * @param bool $escape escape HTML entities
304 * @return string HTML processed $description.
306 function process_markdown($description, $escape = true, $allowedProtocols = [])
308 $parsedown = new Parsedown();
310 $processedDescription = $description;
311 $processedDescription = reverse_nl2br($processedDescription);
312 $processedDescription = reverse_space2nbsp($processedDescription);
313 $processedDescription = reverse_text2clickable($processedDescription);
314 $processedDescription = filter_protocols($processedDescription, $allowedProtocols);
315 $processedDescription = unescape($processedDescription);
316 $processedDescription = $parsedown
317 ->setMarkupEscaped($escape)
318 ->setBreaksEnabled(true)
319 ->text($processedDescription);
320 $processedDescription = sanitize_html($processedDescription);
322 if(!empty($processedDescription)){
323 $processedDescription = '<div
class="markdown">'. $processedDescription . '</div
>';
326 return $processedDescription;