-
I use remark-parse below const content = "I want to use this **AWS(Amazon Web Services)**2"
const processedContent = await unified()
.use(markdown) //remark-parse
.use(remark2rehype) //remark-rehype
.use(rehype2string) //rehype-stringify
.process(content); I expect
but actual output is
After realizing that it was due to gfm, I tried many things but I didin't succeed. The example is English, but the actual language used is different, so it is important to solve this. How can I do that? |
Beta Was this translation helpful? Give feedback.
Answered by
wooorm
Jan 6, 2021
Replies: 1 comment 2 replies
-
This actual behavior conforms to the spec: https://spec.commonmark.org/dingus/?text=I%20want%20to%20use%20this%20**AWS(Amazon%20Web%20Services)**2 |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
wooorm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This actual behavior conforms to the spec: https://spec.commonmark.org/dingus/?text=I%20want%20to%20use%20this%20**AWS(Amazon%20Web%20Services)**2