html – 禁用一个块的标记

前端之家收集整理的这篇文章主要介绍了html – 禁用一个块的标记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Markdown语法通常很方便地编写博客评论;

但有时候,当您想要编写一个简单的html时,它会干扰内容

有没有标签/语法要求markdown忽略该部分,如pre html标签

如果预先工作,如果markdown部分需要包含html标签怎么办?

解决方法

Markdown(Gruber)和 PHP Markdown的原始实现不会在块级HTML元素内部格式化,因此您可以使用< div>,例如:
Markdown text.

More markdown text.

<div>
Markdown ignores inside the div,you can do all sorts of crazy stuff:
<a href="http://www.stackoverflow.com">Stack Overflow</a>.
<blink>Is blink still supported?</blink>
</div>

Yet more markdown text.

将呈现为:

<p>Markdown text.</p>

<p>More markdown text.</p>

<div>
Markdown ignores inside the div,you can do all sorts of crazy stuff:
<a href="http://www.stackoverflow.com">Stack Overflow</a>.
<blink>Is blink still supported?</blink>
</div>

<p>Yet more markdown text.</p>
原文链接:https://www.f2er.com/html/230708.html

猜你在找的HTML相关文章