1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-21 16:03:42 +03:00

Change 'addTargetBlank' comment (#407)

This commit is contained in:
Artyom Kazak 2019-10-30 17:27:19 +03:00 committed by mergify[bot]
parent 027a05d3d7
commit 958afba90b

View File

@ -191,9 +191,10 @@ extractInlines = concatMap go
HTML_INLINE xs -> [MD.Node Nothing (CODE xs) []]
CODE_BLOCK _ xs -> [MD.Node Nothing (CODE xs) []]
-- | Convert LINK to HTML_INLINE with 'target="_blank"' attribute added.
-- | Convert 'LINK' to 'HTML_INLINE' with @target="_blank"@ attribute added.
--
-- It is necessary that the rendered html page be opened in a new tab.
-- It will cause the link to be opened in a new tab, which is the behavior
-- we want for links in user-submitted content.
addTargetBlank :: MD.Node -> MD.Node
addTargetBlank (MD.Node pos (LINK url title) ns) =
MD.Node pos (HTML_INLINE blankLink) []