【🆘回归项目,勿改】🍑自定义域名-4-自动证书
    【🆘回归项目,勿改】🍑自定义域名-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 与 规范不符合的行为
      • 引用
    • 宠物
      • 查询宠物详情
      • 删除宠物信息
      • 新建宠物信息
      • 修改宠物信息
      • 根据状态查找宠物列表

    Markdown 为了支持 mdx 需要调整的

    Markdown Cheatsheet#


    Heading 1#

        Markup :  # Heading 1 #
    
        -OR-
    
        Markup :  ============= (below H1 text)

    Heading 2#

        Markup :  ## Heading 2 ##
    
        -OR-
    
        Markup: --------------- (below H2 text)

    Heading 3#

        Markup :  ### Heading 3 ###

    Heading 4#

        Markup :  #### Heading 4 ####
    Common text
        Markup :  Common text
    Emphasized text
        Markup :  _Emphasized text_ or *Emphasized text*
    Strikethrough text
        Markup :  ~~Strikethrough text~~
    Strong text
        Markup :  __Strong text__ or **Strong text**
    Strong emphasized text
        Markup :  ___Strong emphasized text___ or ***Strong emphasized text***
    
    [Named Link](http://www.google.fr/ "Named link title") and http://www.google.fr/ or http://example.com/
    
        Markup :  [Named Link](http://www.google.fr/ "Named link title") and http://www.google.fr/ or http://example.com/
    heading-1
        Markup: [heading-1](#heading-1 "Goto heading-1")
    Table, like this one :
    First HeaderSecond Header
    Content CellContent Cell
    Content CellContent Cell
    First Header  | Second Header
    ------------- | -------------
    Content Cell  | Content Cell
    Content Cell  | Content Cell
    Adding a pipe | in a cell :
    First HeaderSecond Header
    Content CellContent Cell
    Content Cell|
    First Header  | Second Header
    ------------- | -------------
    Content Cell  | Content Cell
    Content Cell  |  \| 
    Left, right and center aligned table
    Left aligned HeaderRight aligned HeaderCenter aligned Header
    Content CellContent CellContent Cell
    Content CellContent CellContent Cell
    Left aligned Header | Right aligned Header | Center aligned Header
    | :--- | ---: | :---:
    Content Cell  | Content Cell | Content Cell
    Content Cell  | Content Cell | Content Cell
    code()
        Markup :  `code()`
    
        Markup : ```javascript
                 ```
    Bullet list
    Nested bullet
    Sub-nested bullet etc
    Bullet list item 2
     Markup : * Bullet list
                  * Nested bullet
                      * Sub-nested bullet etc
              * Bullet list item 2
    
    -OR-
    
     Markup : - Bullet list
                  - Nested bullet
                      - Sub-nested bullet etc
              - Bullet list item 2 
    1.
    A numbered list
    1.
    A nested numbered list
    2.
    Which is numbered
    2.
    Which is numbered
    An uncompleted task
    A completed task
     Markup : - [ ] An uncompleted task
              - [x] A completed task
    An uncompleted task
    A subtask
     Markup : - [ ] An uncompleted task
                  - [ ] A subtask
    Blockquote
    Nested blockquote
        Markup :  > Blockquote
                  >> Nested Blockquote
    Horizontal line :

        Markup :  - - - -
    Image with alt :
    picture alt
        Markup : ![picture alt](http://via.placeholder.com/200x150 "Title is optional")
    Foldable text:
    Title 1
    Content 1 Content 1 Content 1 Content 1 Content 1
    Title 2
    Content 2 Content 2 Content 2 Content 2 Content 2
        Markup : <details>
                   <summary>Title 1</summary>
                   <p>Content 1 Content 1 Content 1 Content 1 Content 1</p>
                 </details>
    Link to a specific part of the page:
    Go To TOP
        Markup : [text goes here](#section_name)
                  section_title<a name="section_name"></a>    
    Hotkey:
    ⌘F
    ⇧⌘F
        Markup : <kbd>⌘F</kbd>
    Hotkey list:
    KeySymbol
    Option⌥
    Control⌃
    Command⌘
    Shift⇧
    Caps Lock⇪
    Tab⇥
    Esc⎋
    Power⌽
    Return↩
    Delete⌫
    Up↑
    Down↓
    Left←
    Right→
    Emoji:
    ❗ Use emoji icons to enhance text. 👍 Look up emoji codes at emoji-cheat-sheet.com
        Markup : Code appears between colons :EMOJICODE:
    修改于 2024-04-17 03:10:13
    上一页
    Markdown 基础样式
    下一页
    TailwindCSS 样式支持
    Built with