Heading 1
Ad dolor incididunt quis irure officia officia sunt labore minim do nulla incididunt ex. Qui eiusmod ex laboris minim aliqua incididunt consequat. Cillum ea culpa ullamco occaecat sunt reprehenderit cillum ea aute exercitation sit dolor eiusmod. Adipisicing ut enim ullamco cupidatat minim mollit eiusmod commodo.
Pariatur officia consequat duis ut. Pariatur occaecat reprehenderit excepteur proident amet laborum fugiat deserunt nisi ipsum magna ex magna proident. Labore voluptate eiusmod nisi mollit magna culpa cupidatat magna laboris. Velit nostrud velit commodo incididunt eu irure.
Heading 2
Deserunt officia reprehenderit eu dolor minim sint voluptate do amet. Amet reprehenderit dolor occaecat irure culpa eiusmod tempor fugiat elit magna. Eu ea amet et proident pariatur tempor in excepteur et tempor anim elit pariatur. Eiusmod est adipisicing velit officia officia ullamco nostrud adipisicing deserunt occaecat. Est officia officia Lorem incididunt do laboris.
Heading 3
Reprehenderit aliquip ut cillum magna occaecat anim laborum ut velit nostrud.
Velit sint veniam labore veniam.
Heading 4
Fugiat incididunt culpa laboris incididunt nulla aliquip nostrud amet cillum.
Telegraphic
bold
italic
bold and italic
del
Link
Random text.
Hover the mouse over it to see the title.
Several syntaxes are accepted:
One
Two
Three
I love supporting the EFF.
This is the Markdown Guide.
See the section on code
.
List
Unordered List
- First item
- Second item
- Indented item
- Indented item
- Third item
Ordered List
- Coffee
- Tea
- Milk
Blockquotes
First level
Second level
Markdown can be used inside quotes
This is the first list item.
This is the second list item.
strikethroughHere’s some example
code
:echo "hello world"
shell
Code formatting
inline-code
plain text
console.log('hewwo');
console.log('hello');
console.log('goodbye');
ts
console.log('Not focused');
console.log('Focused');
console.log('Not focused');
ts
console.log('No errors or warnings');
console.error('Error');
console.warn('Warning');
console.log('Highlighted');
ts
const msg = 'Hello World';
console.log(msg);
console.log(msg); // prints Hello World
js
interface Todo {
Todo.title: string
title: string;
}
const const todo: Readonly<Todo>
todo: type Readonly<T> = { readonly [P in keyof T]: T[P]; }
Make all properties in T readonlyReadonly<Todo> = {
title: string
title: 'Delete inactive users'.String.toUpperCase(): string
Converts all the alphabetic characters in a string to uppercase.toUpperCase(),
};
const todo: Readonly<Todo>
todo.title = 'Hello';
var Number: NumberConstructor
An object that represents a number of any kind. All JavaScript numbers are 64-bit floating-point numbers.Number.p- parseFloat
- parseInt
- prototype
NumberConstructor.parseInt(string: string, radix?: number): number
Converts A string to an integer.arseInt('123', 10);
//
//
tsx
Images
Tables
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
-Text alignment in tables-
Syntax | Description | Test Text |
---|---|---|
Header | Title | Here’s this |
Paragraph | Text | And more |