我正在寻找从markdown文件中删除html注释。我一直在环顾四周,到目前为止我发现的所有内容都不支持渲染到降价,或者如果支持,则它们不会保留原始文档的所有信息。
以下示例突出显示了我要寻找的内容。
输入:
```
don't touch the following
<!-- -->
```
<!--
- some example comment
-->
some arrow -->
[0]: https://example.com
所需的输出:
```
don't touch the following
<!-- -->
```
some arrow -->
[0]: https://example.com