mirror of
https://activitypub.software/TransFem-org/sfm-js
synced 2024-11-25 15:35:13 +00:00
add inline: small, italic, strike, motion
This commit is contained in:
parent
e906b32f8b
commit
85d9423194
1 changed files with 70 additions and 3 deletions
|
@ -28,6 +28,10 @@ block
|
||||||
inline
|
inline
|
||||||
= big
|
= big
|
||||||
/ bold
|
/ bold
|
||||||
|
/ small
|
||||||
|
/ italic
|
||||||
|
/ strike
|
||||||
|
/ motion
|
||||||
/ text
|
/ text
|
||||||
|
|
||||||
text
|
text
|
||||||
|
@ -109,15 +113,16 @@ big
|
||||||
|
|
||||||
// inline: bold
|
// inline: bold
|
||||||
|
|
||||||
bold = bold_A / bold_B
|
bold
|
||||||
|
= boldA / boldB
|
||||||
|
|
||||||
bold_A
|
boldA
|
||||||
= "**" content:(!"**" i:inline { return i; })+ "**"
|
= "**" content:(!"**" i:inline { return i; })+ "**"
|
||||||
{
|
{
|
||||||
return createTree('bold', { }, mergeText(content));
|
return createTree('bold', { }, mergeText(content));
|
||||||
}
|
}
|
||||||
|
|
||||||
bold_B
|
boldB
|
||||||
= "__" content:$(!"__" c:[a-zA-Z0-9 \t] { return c; })+ "__"
|
= "__" content:$(!"__" c:[a-zA-Z0-9 \t] { return c; })+ "__"
|
||||||
{
|
{
|
||||||
const parsedContent = applyParser(content, 'inlineParser');
|
const parsedContent = applyParser(content, 'inlineParser');
|
||||||
|
@ -125,6 +130,68 @@ bold_B
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// inline: small
|
||||||
|
|
||||||
|
small
|
||||||
|
= "<small>" content:(!"</small>" i:inline { return i; })+ "</small>"
|
||||||
|
{
|
||||||
|
return createTree('small', { }, mergeText(content));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// inline: italic
|
||||||
|
|
||||||
|
italic
|
||||||
|
= italicA / italicB / italicC
|
||||||
|
|
||||||
|
italicA
|
||||||
|
= "<i>" content:(!"</i>" i:inline { return i; })+ "</i>"
|
||||||
|
{
|
||||||
|
return createTree('italic', { }, mergeText(content));
|
||||||
|
}
|
||||||
|
|
||||||
|
italicB
|
||||||
|
= "*" content:$(!"*" c:[a-zA-Z0-9 \t] { return c; })+ "*"
|
||||||
|
{
|
||||||
|
const parsedContent = applyParser(content, 'inlineParser');
|
||||||
|
return createTree('italic', { }, parsedContent);
|
||||||
|
}
|
||||||
|
|
||||||
|
italicC
|
||||||
|
= "_" content:$(!"_" c:[a-zA-Z0-9 \t] { return c; })+ "_"
|
||||||
|
{
|
||||||
|
const parsedContent = applyParser(content, 'inlineParser');
|
||||||
|
return createTree('italic', { }, parsedContent);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// inline: strike
|
||||||
|
|
||||||
|
strike
|
||||||
|
= "~~" content:(!"~~" i:inline { return i; })+ "~~"
|
||||||
|
{
|
||||||
|
return createTree('strike', { }, mergeText(content));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// inline: motion
|
||||||
|
|
||||||
|
motion
|
||||||
|
= motionA / motionB
|
||||||
|
|
||||||
|
motionA
|
||||||
|
= "<motion>" content:(!"</motion>" i:inline { return i; })+ "</motion>"
|
||||||
|
{
|
||||||
|
return createTree('motion', { }, mergeText(content));
|
||||||
|
}
|
||||||
|
|
||||||
|
motionB
|
||||||
|
= "(((" content:(!")))" i:inline { return i; })+ ")))"
|
||||||
|
{
|
||||||
|
return createTree('motion', { }, mergeText(content));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Core rules
|
// Core rules
|
||||||
|
|
||||||
CHAR
|
CHAR
|
||||||
|
|
Loading…
Reference in a new issue