我正在将一些文档从HTML转换为github风格的markdown。我在旧文档中有很多红色/粉色警告框。
e.g。
div.warnbox { background-color:#fcc; border-left: 3px solid #f00; }
~~~~~~
<div class="warnbox">
If you pass null as a parameter the world will end.
</div>
有没有办法在(github)降价中做类似的事情?到目前为止,我一直在使用不具有自信红色的报价框:
> If you pass null as a parameter the world will end
我还看到了一个有趣的解决方案,有人建议使用diff语法代码块:
```diff
- If you pass null as a parameter the world will end
```
但是这有多个问题(灰色轮廓,固定宽度字体,行开头的' - '等)
有没有办法(即使像差异一样hacky)这样做?