2022-05-24 22:02:11 +00:00
import { renderMarkdown } from '../dist/index.js' ;
2022-06-20 19:09:35 +00:00
import chai , { expect } from 'chai' ;
2022-05-24 22:02:11 +00:00
describe ( 'expressions' , ( ) => {
2022-06-03 12:26:39 +00:00
it ( 'should be able to serialize bare expression' , async ( ) => {
2022-05-24 22:02:11 +00:00
const { code } = await renderMarkdown ( ` {a} ` , { } ) ;
chai . expect ( code ) . to . equal ( ` {a} ` ) ;
} ) ;
it ( 'should be able to serialize expression inside component' , async ( ) => {
const { code } = await renderMarkdown ( ` <Component>{a}</Component> ` , { } ) ;
2022-06-17 16:52:37 +00:00
chai . expect ( code ) . to . equal ( ` <Component>{a}</Component> ` ) ;
2022-05-24 22:02:11 +00:00
} ) ;
it ( 'should be able to serialize expression inside markdown' , async ( ) => {
const { code } = await renderMarkdown ( ` # {frontmatter.title} ` , { } ) ;
2022-05-24 22:03:29 +00:00
chai
. expect ( code )
. to . equal ( ` <h1 id={ $ $ slug( \` \$ {frontmatter.title} \` )}>{frontmatter.title}</h1> ` ) ;
2022-05-24 22:02:11 +00:00
} ) ;
it ( 'should be able to serialize complex expression inside markdown' , async ( ) => {
const { code } = await renderMarkdown ( ` # Hello {frontmatter.name} ` , { } ) ;
2022-05-24 22:03:29 +00:00
chai
. expect ( code )
. to . equal ( ` <h1 id={ $ $ slug( \` Hello \$ {frontmatter.name} \` )}>Hello {frontmatter.name}</h1> ` ) ;
2022-05-24 22:02:11 +00:00
} ) ;
it ( 'should be able to serialize complex expression with markup inside markdown' , async ( ) => {
const { code } = await renderMarkdown ( ` # Hello <span>{frontmatter.name}</span> ` , { } ) ;
2022-05-24 22:03:29 +00:00
chai
. expect ( code )
. to . equal (
` <h1 id={ $ $ slug( \` Hello \$ {frontmatter.name} \` )}>Hello <span>{frontmatter.name}</span></h1> `
) ;
2022-05-24 22:02:11 +00:00
} ) ;
2022-06-03 12:26:39 +00:00
it ( 'should be able to avoid evaluating JSX-like expressions in an inline code & generate a slug for id' , async ( ) => {
const { code } = await renderMarkdown ( ` # \` {frontmatter.title} \` ` , { } ) ;
chai
. expect ( code )
. to . equal ( '<h1 id="frontmattertitle"><code is:raw>{frontmatter.title}</code></h1>' ) ;
} ) ;
it ( 'should be able to avoid evaluating JSX-like expressions in inline codes' , async ( ) => {
const { code } = await renderMarkdown ( ` # \` { foo } \` is a shorthand for \` { foo: foo } \` ` , { } ) ;
chai
. expect ( code )
. to . equal (
2022-07-16 09:45:41 +00:00
'<h1 id="-foo--is-a-shorthand-for--foo-foo"><code is:raw>{ foo }</code> is a shorthand for <code is:raw>{ foo: foo }</code></h1>'
2022-06-03 12:26:39 +00:00
) ;
} ) ;
it ( 'should be able to avoid evaluating JSX-like expressions & escape HTML tag characters in inline codes' , async ( ) => {
const { code } = await renderMarkdown (
` ###### \` {} \` is equivalent to \` Record<never, never> \` <small>(at TypeScript v{frontmatter.version})</small> ` ,
{ }
) ;
chai
. expect ( code )
. to . equal (
` <h6 id={ $ $ slug( \` {} is equivalent to Record<never, never> (at TypeScript v \$ {frontmatter.version}) \` )}><code is:raw>{}</code> is equivalent to <code is:raw>Record<never, never></code> <small>(at TypeScript v{frontmatter.version})</small></h6> `
) ;
} ) ;
2022-06-20 19:09:35 +00:00
it ( 'should be able to encode ampersand characters in code blocks' , async ( ) => {
const { code } = await renderMarkdown (
'The ampersand in ` ` must be encoded in code blocks.' ,
{ }
) ;
chai
. expect ( code )
. to . equal (
'<p>The ampersand in <code is:raw>&nbsp;</code> must be encoded in code blocks.</p>'
2022-06-20 19:10:59 +00:00
) ;
2022-06-20 19:09:35 +00:00
} ) ;
it ( 'should be able to encode ampersand characters in fenced code blocks' , async ( ) => {
const { code } = await renderMarkdown ( `
\ ` \` \` md
The ampersand in \ ` \` must be encoded in code blocks.
\ ` \` \`
` );
2022-06-20 19:10:59 +00:00
chai . expect ( code ) . to . match ( /^<pre is:raw.*<code>.*The ampersand in `&nbsp;`/ ) ;
} ) ;
2022-06-20 19:09:35 +00:00
2022-05-24 22:02:11 +00:00
it ( 'should be able to serialize function expression' , async ( ) => {
2022-05-24 22:03:29 +00:00
const { code } = await renderMarkdown (
` {frontmatter.list.map(item => <p id={item}>{item}</p>)} ` ,
{ }
) ;
2022-05-24 22:02:11 +00:00
chai . expect ( code ) . to . equal ( ` {frontmatter.list.map(item => <p id={item}>{item}</p>)} ` ) ;
2022-05-24 22:03:29 +00:00
} ) ;
2022-06-20 17:12:42 +00:00
it ( 'should unwrap HTML comments in inline code blocks' , async ( ) => {
2022-06-20 17:14:08 +00:00
const { code } = await renderMarkdown ( ` \` {/*<!-- HTML comment -->*/} \` ` ) ;
2022-06-20 17:12:42 +00:00
chai . expect ( code ) . to . equal ( '<p><code is:raw><!-- HTML comment --></code></p>' ) ;
} ) ;
it ( 'should unwrap HTML comments in code fences' , async ( ) => {
const { code } = await renderMarkdown (
`
\ ` \` \`
<!-- HTML comment -- >
\ ` \` \`
`
) ;
2022-06-20 17:14:08 +00:00
chai . expect ( code ) . to . match ( /(?<!{\/\*)<!-- HTML comment -->(?!\*\/})/ ) ;
2022-06-20 17:12:42 +00:00
} ) ;
2022-05-24 22:02:11 +00:00
} ) ;