You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prependRoot option to prepend root: value to image path. [#111]
This is useful when you have custom root: value.
Example:
root: /blog/marked:
prependRoot: true # disabled by default
When embedding an internal image, instead of using ![image-title](/blog/foo/bar.jpg), you can save some typing by using ![image-title](/foo/bar.jpg) instead. When this feature is enabled, /blog will be automatically prepended to /foo/bar.jpg.
external_link option to open links in new tab. [#116] [#119]
exclude: ['foo.com', 'bar.net'] skips over links that start with foo.com or bar.net, e.g. https://foo.com/post-a/ & https://bar.net/post-b/. Subdomains need to be specified when applicable, including "www"; the example given here doesn't apply to http://www.bar.com/post-c.
nofollow: true adds rel="noopener external nofollow noreferrer" for SEO, otherwise it's just rel="noopener" if external_link: is enabled.