This article offers a sample of basic Markdown syntax that can be used in Blog and Docs.
The following HTML <h1>
—<h6>
elements represent six levels of section headings. <h1>
is the highest section level while <h6>
is the lowest.
This is an example of paragraph.
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a footer
or cite
element, and optionally with in-line changes such as annotations and abbreviations.
Tiam, ad mint andaepu dandae nostion secatur sequo quae. Note that you can use Markdown syntax within a blockquote.
Don’t communicate by sharing memory, share memory by communicating.
— Rob Pike[^1]
[^1]: The above quote is excerpted from Rob Pike’s talk during Gopherfest, November 18, 2015.
Tables aren’t part of the core Markdown spec, but Hugo supports them out-of-the-box.
Name | Age |
---|---|
Bob | 27 |
Alice | 23 |
Italics | Bold | Code |
---|---|---|
italics | bold | code |
H2O
Xn + Yn = Zn
Press CTRL+ALT+Delete to end the session.
Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.
function removeSpecialCharacters(str) {
// Create a regular expression to match the characters you want to remove
const regex = /[,.?'-]/g;
// Use the replace method with the regex to remove the characters
return str.replace(regex, '');
}
// Example usage
const input = "Hello, world! How are you today? I'm fine - thanks.";
const output = removeSpecialCharacters(input);
console.log(output); // "Hello world! How are you today Im fine thanks"