Markdown Examples
Loading...
Updated about 2 years ago by Admin
Created about 2 years ago by Admin
This page demonstrates various Markdown formatting options available in NextWiki.
This text is italic.
This is also italic.
This text is bold.
This is also bold.
This text is bold and italic.
This is also bold and italic.
This text is strikethrough.
Visit the NextWiki GitHub Repository
Go to Getting Started (Example of a relative link)
This is a blockquote. It's useful for quoting text from another source.
Blockquotes can be nested.
NextWiki supports styled blockquotes, similar to admonitions in Wiki.js, by adding a class after the quote:
This is an informational message.
This is a warning message.
This is a tip or suggestion.
(Note: The available classes like .is-info, .is-warning, .is-tip depend on the configured CSS.)
Inline code example.
// Code block example
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('World');
Use three or more hyphens, asterisks, or underscores:
You can apply styles to lists of links using a class identifier:
(Note: The appearance depends on the CSS rules for .links-list.)