vuepress-theme-plume/docs/notes/theme/snippet/whitespace.snippet.md
2024-04-06 02:18:15 +08:00

49 lines
562 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

渲染每行代码行前的空格:
**输入:**
````
```xml whitespace
<catalog>
<book>
<title>Everyday Italian</title>
</book>
</catalog>
```
```
````
**输出:**
```xml whitespace
<catalog>
<book>
<title>Everyday Italian</title>
</book>
</catalog>
```
渲染每行代码行前的 Tab
**输入:**
````
```xml whitespace
<catalog>
<book>
<title>Everyday Italian</title>
</book>
</catalog>
```
````
**输出:**
```xml whitespace
<catalog>
<book>
<title>Everyday Italian</title>
</book>
</catalog>
```