其实markdown就有这个功能,只不过写法略有不同,写法如下:
> Hello, World! \
Coding Changes the World
官网说明:https://www.markdownguide.org/basic-syntax/#blockquotes-1
你可以用这个在线工具试下:https://dillinger.io/
github的readme编辑同样支持
其实就是生成了一个blockquote标签
cnblogs的问题回答编辑框用上面的没有效果,可能是使用markdown版本低,但最有可能是网站自定义的样式把markdown原本的样式给覆盖了,才出现楼上贴出的那种四周边框的效果
Hello, World!
Coding Changes the World
Hello, World!
Coding Changes the World
博问中有效果
这样还是不方便,每行都要写
@dudu: 你上面回复的内容,如果用markdown,在 https://dillinger.io/ 上直接这样
>Hello, World!
Coding Changes the World
Hello, World!
Coding Changes the World
而在github上,要这样
> Hello, World! \
Coding Changes the World \
Hello, World! \
Coding Changes the World
你可以研究下 https://dillinger.io/ ,要比github更智能些
@dudu: 不需要每行都写,看我后面发的,你可以试一下
@dudu: 博问中的效果是一个方框,不是别人那样的效果,估计是网站样式把默认的覆盖了,可以让美工看下
@E行者: 方框就是博问的引用样式,markdown-it 的确默认就支持
@dudu: markdown-it跟github的用法一样,csdn跟 https://dillinger.io/ 一样
@E行者: markdown-it 的用法也跟 https://dillinger.io/ 一样,https://markdown-it.github.io/ 选中 breaks
在 markdown-it 中这样写就可以
>Hello, World!
Coding Changes the World
Hello, World!
Coding Changes the World
@dudu: 原来如此
现在不也差不多嘛
Hello, World!
Coding Changes the World
可以编写一个 block rule 插件来支持这个标记。