From 6bb54f61507b7a7daeb7e5efb9b52d66ae2e8334 Mon Sep 17 00:00:00 2001 From: geomydas <155147963+geomydas@users.noreply.github.com> Date: Mon, 2 Sep 2024 22:20:41 +0800 Subject: [PATCH 1/2] added markdown.nd in /tools --- tools/markdown.md | 68 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 tools/markdown.md diff --git a/tools/markdown.md b/tools/markdown.md new file mode 100644 index 00000000..06528b30 --- /dev/null +++ b/tools/markdown.md @@ -0,0 +1,68 @@ +# Header + +## Subheader + +### Third-level header + +#### Fourth-level header + +##### Fifth-level header + +###### Sixth-level header + +Paragraph + +**Bold** + +_Italic_ + +> Blockquote + +1. Ordered list +2. Lorem ipsum +3. Lorem ipsum + +- Unordered list +- Lorem ipsum +- Lorem ipsum + +`code` + +--- + +Horizontal rule + +[Link](https://example.com) + +![Image](image.jpg) + +| Table | Table Cell | +| ---------- | ---------- | +| Table Cell | Table Cell | + +``` +Fenced code block +``` + +Here's a sentence with a footnote. [^1] + +[^1]: This is the footnote. + +### Heading ID {#custom-id} + +Definition list term: +Definition + +~~Strikethrough~~ + +- [x] Task list +- [ ] Lorem ipsum +- [ ] Lorem ipsum + +Using emoji :joy: + +==Highlight== + +~Subscript~ + +^Superscript^ From caf4d83437cb9ecc38ead70b06ef2c0c243e7c26 Mon Sep 17 00:00:00 2001 From: geomydas <155147963+geomydas@users.noreply.github.com> Date: Mon, 2 Sep 2024 23:30:02 +0800 Subject: [PATCH 2/2] updated markdown.md table so it is less confusing by renaming the third row as header cells and added more cells to remove ambiguit --- tools/markdown.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/markdown.md b/tools/markdown.md index 06528b30..a6fe445f 100644 --- a/tools/markdown.md +++ b/tools/markdown.md @@ -36,9 +36,11 @@ Horizontal rule ![Image](image.jpg) -| Table | Table Cell | -| ---------- | ---------- | -| Table Cell | Table Cell | +| Table | Table cell | +| ----------- | ----------- | +| Header cell | Header cell | +| Table | Table cell | +| Table | Table cell | ``` Fenced code block