Wiki Logo
gitWikiStop paying to host your wiki

Example Article

Introduction

This is an example article demonstrating the various formatting and layout options available in our documentation system. The article showcases text formatting, lists, code blocks, and media embedding capabilities.

Text Formatting

You can format text in multiple ways:

  • Make text bold using double asterisks
  • Make text italic using single asterisks
  • Create inline code using backticks
  • Add strikethrough using double tildes

Lists

Unordered Lists

  • First item
  • Second item
    • Nested item 1
    • Nested item 2
  • Third item

Ordered Lists

  1. First step
  2. Second step
    1. Substep A
    2. Substep B
  3. Third step

Code Examples

Here's an example of a JavaScript code block:

function greet(name) {
  console.log(`Hello, ${name}!`);
  return true;
}

// Call the function
greet('World');

You can create links to other articles like Getting Started or external sites.

Images can be embedded with captions:

Example diagram Figure 1: An example diagram showing the documentation structure

References

  • Documentation Style Guide
  • Markdown Syntax Reference
  • Image Guidelines