【🆘回归项目,勿改】🍑自定义域名-4-自动证书
  1. Commonmark 测试用例
【🆘回归项目,勿改】🍑自定义域名-4-自动证书
  • 引用其他接口、项目、模型、图片测试
  • Markdown 基础样式
  • Markdown 为了支持 mdx 需要调整的
  • TailwindCSS 样式支持
  • 自定义样式 TailwindCSS
  • Commonmark 测试用例
    • 1. 遵守的规范
    • 2.4 反斜杠转义
    • 2.5 实体和数字字符引用
    • 4.1 Thematic breaks
    • 4.2 ATX headings
    • 4.3 Setext headings
    • 4.4 Indented code blocks(mdx 不支持了)
    • 4.5 Fenced code blocks
    • 4.5 Fenced code blocks 2
    • 4.6 HTML blocks (mdx 完全代理行为,行为有巨大差异,不同编辑器内核都有很大差异)
    • 4.6 HTML blocks (显示正常)
    • 4.7 Link reference definitions (autolink 相关的行为会影响规范)(mdx 去掉 autolink 支持)
    • 4.8 Paragraphs
    • 4.9 Blank lines
    • 5.1 Block quotes
    • 5.1 Block quotes 2
    • 5.2 List items
    • 5.3 Lists
    • 6.1 Code spans
    • 6.1 Code spans Copy
    • 6.2 Emphasis and strong emphasis
    • 6.3 Links
    • 6.4 image
    • 6.5 Autolinks (mdx 不支持了)
    • 6.6 Raw HTML (mdx不再支持)
    • 6.7 Hard line breaks
    • 6.8 Soft line breaks (remark-break 改变了行为)
    • 6.9 Textual content
  • 组件
    • 告示&高亮块
    • 选项卡
    • 数据模型
    • 折叠块&折叠组(手风琴)
    • Tooltip & Video
    • 卡片&卡片组
    • 多列-Columns
    • Frame
    • 步骤
  • Commonmark 测试用例 in Mdx
    • 1. 遵守的规范
    • 2.4 反斜杠转义
    • 2.5 实体和数字字符引用
    • 4.1 Thematic breaks
    • 4.2 ATX headings
    • 4.3 Setext headings
    • 4.4 Indented code blocks(mdx 需要调整的写法)
    • 4.5 Fenced code blocks
    • 4.5 Fenced code blocks 2
    • 4.6 HTML blocks (mdx 完全代理行为,行为有巨大差异,不同编辑器内核都有很大差异)
    • 4.6 HTML blocks (显示正常)
    • 4.7 Link reference definitions (autolink 相关的行为会影响规范)(mdx 去掉 autolink 支持)
    • 4.8 Paragraphs
    • 4.9 Blank lines
    • 5.1 Block quotes
    • 5.1 Block quotes 2
    • 5.2 List items
    • 5.3 Lists
    • 6.1 Code spans
    • 6.1 Code spans Copy
    • 6.2 Emphasis and strong emphasis
    • 6.3 Links
    • 6.4 image
    • 6.5 Autolinks (mdx 不支持了)
    • 6.6 Raw HTML (mdx不再支持)
    • 6.7 Hard line breaks
    • 6.8 Soft line breaks (remark-break 改变了行为)
    • 6.9 Textual content
  • GFM 扩展
    • 表格(拓展)
    • 任务列表项(拓展)
    • 删除线 (拓展)
    • 自动链接 (拓展)
  • 开发时候发现的mdx 与 规范不符合的行为
    • 引用
  • 宠物
    • 查询宠物详情
    • 删除宠物信息
    • 新建宠物信息
    • 修改宠物信息
    • 根据状态查找宠物列表
  1. Commonmark 测试用例

6.6 Raw HTML (mdx不再支持)

一个HTML标记由一个开始标记、一个结束标记、一个HTML注释、一个处理指令、一个声明或CDATA节组成。

Here are some simple open tags:
以下是一些简单的开放标签:

Example 613Try It
例句:试一下

Empty elements: 空元素:

Example 614Try It
试试看

Whitespace is allowed: 允许使用空格:

Example 615Try It
试试看

With attributes: 具有以下属性:

Example 616Try It
试试看

Custom tag names can be used: 可以使用自定义标记名称:

Example 617Try It
试试看
Foo

Foo

Illegal tag names, not parsed as HTML: 不合法的标记名,未解析为HTML:

Example 618Try It
试试看
<33> <__>

<33> <__>

Illegal attribute names: 属性名称非法:

Example 619Try It
试试看
<a h*#ref="hi">

<a h*#ref="hi">

Illegal attribute values: 非法属性值:

Example 620Try It
试试看
<a href="hi'> <a href=hi'>

<a href="hi'> <a href=hi'>

Illegal whitespace: 非法空格:

Example 621Try It
试试看
< a><
foo><bar/ >
<foo bar=baz
bim!bop />

< a>< foo><bar/ > <foo bar=baz bim!bop />

Missing whitespace: 缺少空格:

Example 622Try It
试试看
<a href='bar'title=title>

<a href='bar'title=title>

Closing tags: 结束标签:

Example 623Try It
试试看

Illegal attributes in closing tag: 结束标记中的非法属性:

Example 624Try It
624试一试
</a href="foo">

</a href="foo">

Comments: 评论:

Example 625Try It
试试看
foo

foo

Example 626Try It 例句:试一下 foo foo --> foo foo -->

foo foo -->

foo foo -->

Processing instructions: 处理说明:

Example 627Try It
例句:试一下
foo

foo

Declarations: 声明:

Example 628Try It
试试看
foo

foo

CDATA sections: CDATA节:

Example 629Try It
例句:试一下
foo &<]]>

foo &<]]>

Entity and numeric character references are preserved in HTML attributes: 实体和数字字符引用保留在HTML属性中:

Example 630Try It
例句:试一下
foo

foo

Backslash escapes do not work in HTML attributes: 反斜杠转义不适用于HTML属性:

Example 631Try It
例句:试试看
foo

foo

Example 632Try It 例句:试一下

<a href=""">

修改于 2024-04-17 03:10:13
上一页
6.5 Autolinks (mdx 不支持了)
下一页
6.7 Hard line breaks
Built with