Heading components section
Alternate Syntax for Heading 1 and Heading 2 under Headings sections
Paragraph components section
Paragraph example
Line Break components section
Paragraph example
Line break paragraph example
Emphasis components section
This is component Bold
Bold example
This is component Italic
Italic example
This is component Bold and Italic
Bold and Italic example
This is component Blockquotes
Blockquotes example
This is component Nested Blockquotes
Blockquotes example
Nested Blockquotes example
For more Nested Blockquotes, can put > before the first one Unnested Blockquote Another nested blockquote
Blockquote
Indented blockquote
Nested Blockquotes example
Continuation of original
List components section
Ordered Lists
- First item example
- Second item example
- ...
Unordered Lists
- First item example
- Second item example
- ...
Adding Elements in Lists
Paragraphs
-
This is the first list item.
-
Here's the second list item.
I need to add another paragraph below the second list item.
-
And here's the third list item.
Blockquotes
-
This is the first list item.
-
Here's the second list item.
A blockquote would look great below the second list item.
-
And here's the third list item.
Code Blocks
-
Open the file.
-
Find the following code block on line 21:
<html> <head> <title>Test</title> </head>
-
Update the title to match the name of your website.
Images
Lists
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
Code components section
Code example
Escaping Backticks
Use `code` in your Markdown file.
Code blocks
<html>
<head>
</head>
</html>
Horizontal components section
Horizonal
Example
Link components section
Adding titles
- Link example
URLs and Email Address
- <https//www.google.com>
- [email protected]
Formatting Links
- With bold example: Bold Example
- With italic example: Italic Example
- With code example:
Code example
- With in-style link with title: Inline-style link with title
Image components section
Inline-style: ![[assets/common-component/fe9d47fb207a78f2ab92b1b77ffcd46b_MD5.png|"Logo Title Text 1"]]
![[assets/common-component/d45f91af580deb773c11b9fea4eabd4c_MD5.png|"The Stormtroopocat"]]
Like links, Images also have a footnote style syntax
With a reference later in the document defining the URL location:
Syntax Highlighting:
- SQL:
SELECT * FROM users
- Python:
# This is a comment
def hello_world():
print("Hello, world!")
- HTML:
<!-- This is a comment -->
<h1>Hello, world!</h1>
- JavaScript:
// This is a comment
function helloWorld() {
console.log("Hello, world!");
}
- C++:
// This is a comment
#include <iostream>
using namespace std;
void helloWorld() {
cout << "Hello, world!" << endl;
}
- Markdown:
<!-- This is a comment -->
# Hello, world!