Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 955 Bytes

example.textile

File metadata and controls

51 lines (37 loc) · 955 Bytes

Header 1

Header 2

Header 3

Header 4

Header 5

italics, bold, underscore, strikethrough, superscript, subscript, code()
trademark™, reserved®, copyright©, ellipses …
red, blue, green

the alt text is "tee-dot"

Formatted text:

// Show textile
let previewDisposable = vscode.commands.registerCommand('textile.showPreview', () => {
    let editor = vscode.window.activeTextEditor;

    if (typeof editor === 'undefined') {
        vscode.window.showErrorMessage('Please open a textile file');
        return;
    }
Col 1 Col 2 Col 3
a table row
a table row
  • Bullet list
  • Another one
  • Another one
  1. A numbered list
  2. Which is numbered
  3. With periods and a space

A mixed list:

  • Bullet one
  • Bullet two
    1. Step 1
    2. Step 2
    3. Step 3
  • Bullet three
    • Sub Bullet 1
    • Sub Bullet 2