现在 Markdown
编辑文本越来越主流,很多系统希望集成 Markdown 编辑器,编辑Markdown后,自然少不了渲染的事,但是渲染往往各自平台不同。如果你不知道选择哪家的渲染效果,又没有过多的特效要求,可以使用 GithubAPI 快速实现 Markdown 渲染。
本文就教会你如何使用 GithubAPI 渲染 Markdown。
一些老项目因为不为人知的原因,出现报错:
consoleError: You must provide the URL of lib/mappings.wasm by calling SourceMapConsumer.initialize({ 'lib/mappings.wasm': ... }) before using SourceMapConsumer
找到一个临时解决方案:运行项目时设置环境变量NODE_OPTIONS=--openssl-legacy-provider
。
Windows环境为例,修改运行脚本:
bash# 原来
# react-scripts start
# 修改后
set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start
PS:上面的修改在 package.json
中进行即可。如:
package.json
:json{
"scripts": {
"dev": "react-scripts start"
}
}
package.json
:json{
"scripts": {
"dev": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start"
}
}
参考:https://github.com/parcel-bundler/parcel/issues/8005#issuecomment-1120149358