', inLink: false, inRawBlock: false, block: false, text: '
' },
- { type: 'text', raw: 'html', text: 'html' },
+ { type: 'text', raw: 'html', text: 'html', escaped: false },
{ type: 'html', raw: '
', inLink: false, inRawBlock: false, block: false, text: '
' },
],
});
@@ -1276,7 +1295,12 @@ paragraph
title: null,
text: 'link',
tokens: [
- { type: 'text', raw: 'link', text: 'link' },
+ {
+ type: 'text',
+ raw: 'link',
+ text: 'link',
+ escaped: false,
+ },
],
},
],
@@ -1294,7 +1318,12 @@ paragraph
title: 'title',
text: 'link',
tokens: [
- { type: 'text', raw: 'link', text: 'link' },
+ {
+ type: 'text',
+ raw: 'link',
+ text: 'link',
+ escaped: false,
+ },
],
},
],
@@ -1349,6 +1378,7 @@ paragraph
type: 'text',
raw: 'link',
text: 'link',
+ escaped: false,
}],
},
],
@@ -1372,6 +1402,7 @@ paragraph
type: 'text',
raw: 'link',
text: 'link',
+ escaped: false,
}],
},
],
@@ -1382,7 +1413,11 @@ paragraph
expectInlineTokens({
md: '[link]',
tokens: [
- { type: 'text', raw: '[link]', text: '[link]' },
+ {
+ type: 'text',
+ raw: '[link]',
+ text: '[link]',
+ },
],
});
});
@@ -1397,7 +1432,12 @@ paragraph
raw: '**strong**',
text: 'strong',
tokens: [
- { type: 'text', raw: 'strong', text: 'strong' },
+ {
+ type: 'text',
+ raw: 'strong',
+ text: 'strong',
+ escaped: false,
+ },
],
},
],
@@ -1413,7 +1453,12 @@ paragraph
raw: '*em*',
text: 'em',
tokens: [
- { type: 'text', raw: 'em', text: 'em' },
+ {
+ type: 'text',
+ raw: 'em',
+ text: 'em',
+ escaped: false,
+ },
],
},
],
@@ -1521,6 +1566,7 @@ paragraph
raw: 'a',
text: 'a',
type: 'text',
+ escaped: false,
},
{
raw: '\n',
@@ -1530,6 +1576,7 @@ paragraph
raw: 'b',
text: 'b',
type: 'text',
+ escaped: false,
},
],
});
@@ -1544,7 +1591,12 @@ paragraph
raw: '~~del~~',
text: 'del',
tokens: [
- { type: 'text', raw: 'del', text: 'del' },
+ {
+ type: 'text',
+ raw: 'del',
+ text: 'del',
+ escaped: false,
+ },
],
},
],
@@ -1562,7 +1614,11 @@ paragraph
text: 'https://example.com',
href: 'https://example.com',
tokens: [
- { type: 'text', raw: 'https://example.com', text: 'https://example.com' },
+ {
+ type: 'text',
+ raw: 'https://example.com',
+ text: 'https://example.com',
+ },
],
},
],
@@ -1580,7 +1636,11 @@ paragraph
text: 'test@example.com',
href: 'mailto:test@example.com',
tokens: [
- { type: 'text', raw: 'test@example.com', text: 'test@example.com' },
+ {
+ type: 'text',
+ raw: 'test@example.com',
+ text: 'test@example.com',
+ },
],
},
],
@@ -1597,7 +1657,11 @@ paragraph
text: 'https://example.com',
href: 'https://example.com',
tokens: [
- { type: 'text', raw: 'https://example.com', text: 'https://example.com' },
+ {
+ type: 'text',
+ raw: 'https://example.com',
+ text: 'https://example.com',
+ },
],
},
],
@@ -1615,7 +1679,11 @@ paragraph
text: 'test@example.com',
href: 'mailto:test@example.com',
tokens: [
- { type: 'text', raw: 'test@example.com', text: 'test@example.com' },
+ {
+ type: 'text',
+ raw: 'test@example.com',
+ text: 'test@example.com',
+ },
],
},
],
@@ -1631,6 +1699,7 @@ paragraph
type: 'text',
raw: 'text',
text: 'text',
+ escaped: false,
},
],
});