Lyndra's Blog

Markdown elements

2024-03-19
工具教程 Markdown
2分钟
319字
温馨提示:本文最后更新于 2025-03-11 ,部分信息可能因时间推移而不再适用,欢迎反馈。

This is a H2 Heading

This is a H3 Heading

This is a H4 Heading

This is a H5 Heading
This is a H6 Heading

Horizontal Rules




Emphasis

This is bold text

This is italic text

Strikethrough

Quotes

“Double quotes” and ‘single quotes’

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

References

An example containing a clickable reference1 with a link to the source.

Second example containing a reference2 with a link to the source.

If you check out this example in src/content/post/markdown-elements/index.md, you’ll notice that the references and the heading “Footnotes” are added to the bottom of the page via the remark-rehype plugin.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

1
// Some comments
2
line 1 of code
3
line 2 of code
4
line 3 of code

Block code “fences”

1
Sample text here...

Syntax highlighting

1
var foo = function (bar) {
2
return bar++;
3
};
4
5
console.log(foo(5));

Expressive code examples

Adding a title

file.js
1
console.log("Title example");

A bash terminal

Terminal window
1
echo "A base terminal example"

Highlighting code lines

line-markers.js
1
function demo() {
2
console.log("this line is marked as deleted");
3
// This line and the next one are marked as inserted
4
console.log("this is the second inserted line");
5
6
return "this line uses the neutral default marker type";
7
}

Expressive Code can do a ton more than shown here, and includes a lot of customisation.

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Content from markdown-it

Footnotes

  1. Reference first footnote with a return to content link.

  2. Second reference with a link.

本文标题:Markdown elements
文章作者:Lyndra
发布时间:2024-03-19
总访问量
总访客数人次
Copyright 2025
站点地图