Add semantic elements to Markdown
Some elements are not available in Markdown. You can add them only as XML.
Tabs
Use tabs to switch between content for different frameworks, languages, and operating systems.
Start typing tabs
and press Tab.
class Bicycle {
// state or field
private int gear = 5;
// behavior or method
public void brake() {
System.out.println("This is how brakes work");
}
}
class Bicycle {
// state or field
private val gear = 5
// behavior or method
fun brake(): Unit {
println("This is how brakes work")
}
}
Definition list
Start typing deflist
and press Tab.
- Instance
An instance is a set of content files organized in a Table of Content. You build an instance to create a help website. Any resources in your project, including content and visuals, can be reused between instances.
Last modified: 30 January 2024