···1313 .use(remarkParse) // Parse markdown content to a syntax tree
1414 .use(remarkRehype) // Turn markdown syntax tree to HTML syntax tree, ignoring embedded HTML
1515 .use(rehypeStringify) // Serialize HTML syntax tree
1616- .processSync(markdown),
1616+ .processSync(markdown)
1717 );
1818}
1919···2222 unified()
2323 .use(rehypeParse) // Parse HTML to a syntax tree
2424 .use(rehypeRemark) // Turn HTML syntax tree to markdown syntax tree
2525- .use(remarkStringify) // Serialize HTML syntax tree
2626- .processSync(html),
2525+ .use(
2626+ remarkStringify, // Serialize HTML syntax tree
2727+ {
2828+ bullet: "-", // change default list marker from '*'
2929+ listItemIndent: "tab", // change default indent from two spaces
3030+ }
3131+ )
3232+ .processSync(html)
2733 );
2834}