@ylzcc/remark-codes
v1.0.0
Published
an extension of `unifiedjs` to enable code syntax, with a new feature `props`.
Downloads
10
Readme
@imarkjs/remark-code
Introduction
an extension for unified
to enable code syntax, support that parse AST
from markdown
and compile AST
into markdown
.
Features
Compatible with standard code syntax. ```lang metadata code ```
Expending a new feature
props
. ```lang metadata code ```{{props}}
Using
Install
npm i unified remark-parse remark-stringify @imarkjs/remark-code -S
Example
import {unified} from 'unified'
import remarkParse from 'remark-parse'
import remarkStringify from 'remark-stringify'
import remarkCode from '@imarkjs/remark-code'
const str = `
# Example
\`\`\`lang meta
let s = 'hi'
console.log(s)
\`\`\`{{properties}}
`
const processor1 = unified()
.use(remarkParse)
.use(remarkCode)
const ast = processor1.parse(str)
console.log('ast ->', ast)
const processor2 = unified()
.use(remarkParse)
.use(remarkCode)
.use(remarkStringify)
const md = processor2.stringify(ast)
console.log('markdown ->', md)
run it, you will get result as following:
ast -> {
type: 'root',
children: [
{
type: 'heading',
depth: 1,
children: [Array],
position: [Object]
},
{
type: 'code',
lang: 'lang',
meta: 'meta',
props: 'properties',
value: "\nlet s = 'hi'\nconsole.log(s)\n",
position: [Object]
}
],
position: {
start: { line: 1, column: 1, offset: 0 },
end: { line: 6, column: 1, offset: 69 }
}
}
# note: use ''' to beautify \`\`\`.
markdown -> # Example
'''lang meta
let s = 'hi'
console.log(s)
'''{{properties}}