【发布时间】:2019-12-13 08:36:26
【问题描述】:
当我尝试使用此代码时
# Table of contents
1. [Introduction](#introduction)
2. [Some paragraph](#paragraph1)
1. [Sub paragraph](#subparagraph1)
3. [Another paragraph](#paragraph2)
## This is the introduction <a name="introduction"></a>
Some introduction text, formatted in heading 2 style
## Some paragraph <a name="paragraph1"></a>
The first paragraph text
### Sub paragraph <a name="subparagraph1"></a>
This is a sub paragraph, formatted in heading 3 style
## Another paragraph <a name="paragraph2"></a>
The second paragraph text
我得到这个作为输出。
Introduction
Some paragraph
Sub paragraph
Another paragraph
" class="reference-link">This is the introduction
Some introduction text, formatted in heading 2 style
" class="reference-link">Some paragraph
The first paragraph text
" class="reference-link">Sub paragraph
This is a sub paragraph, formatted in heading 3 style
我的问题是我可以摆脱class="reference-link"> 位吗?
对于我的编辑器,我使用的是名为 ipadao 的在线编辑器 http://editor.md.ipandao.com/#introduction.
我不知道它只是编辑器,还是我的一段代码。因为我对markdown(.md)很陌生
【问题讨论】:
-
请提供 Markdown 解析器生成的 HTML。您可能需要使用浏览器的“查看源代码”工具。然后编辑您的问题并将 HTML 包含在代码块中。