build: 🔧 disable linkify in markdown-it
Linkify causes a few problems making links out of things that are not supposed to be but match the syntax of a link
This commit is contained in:
parent
b32d029675
commit
a2e33f68b6
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ const urlFormat = ({ src, width, format }) => {
|
|||
return src;
|
||||
};
|
||||
|
||||
const MARKDOWNIT_OPTIONS = { html: true, linkify: true, typographer: true };
|
||||
const MARKDOWNIT_OPTIONS = { html: true, linkify: false, typographer: true };
|
||||
const ELEVENTY_IMAGE_DEFAULTS = {
|
||||
formats: ['webp', 'auto'],
|
||||
urlPath: '/img/',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue