This commit is contained in:
@@ -14,7 +14,7 @@ Headings
|
|||||||
##### Heading 5th level
|
##### Heading 5th level
|
||||||
###### Heading 6th level
|
###### Heading 6th level
|
||||||
|
|
||||||
Alternate text styles
|
Emphasis text styles
|
||||||
*Italic*
|
*Italic*
|
||||||
**Bold**
|
**Bold**
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@ Hyperlink
|
|||||||
Image
|
Image
|
||||||

|

|
||||||
|
|
||||||
Block quotes
|
Quote block
|
||||||
> Blockquote
|
> Blockquote
|
||||||
> more block quote
|
> more block quote
|
||||||
|
|
||||||
@@ -38,9 +38,23 @@ Ordered list
|
|||||||
2. Two
|
2. Two
|
||||||
3. Three
|
3. Three
|
||||||
|
|
||||||
|
Nested lists
|
||||||
|
* First
|
||||||
|
* subitem One
|
||||||
|
* subitem Two
|
||||||
|
* Second
|
||||||
|
1. sub one
|
||||||
|
2. sub two
|
||||||
|
|
||||||
Horizontal rule
|
Horizontal rule
|
||||||
---
|
---
|
||||||
|
|
||||||
|
`Inline block` with backticks
|
||||||
|
|
||||||
|
```
|
||||||
|
# Multi-line block
|
||||||
|
print '3 backticks or'
|
||||||
|
print 'indent 4 spaces'
|
||||||
|
```
|
||||||
=-=-=-=-=
|
=-=-=-=-=
|
||||||
|
|
||||||
|
|||||||
@@ -673,6 +673,59 @@ namespace AyaNova.Util
|
|||||||
o.UserType = randomUserType;
|
o.UserType = randomUserType;
|
||||||
|
|
||||||
o.Notes = f.Lorem.Sentence();
|
o.Notes = f.Lorem.Sentence();
|
||||||
|
o.WikiContent=@"
|
||||||
|
## Example Markdown commands for Wiki pages
|
||||||
|
|
||||||
|
Headings
|
||||||
|
# Heading 1st level
|
||||||
|
## Heading 2nd level
|
||||||
|
### Heading 3rd level
|
||||||
|
#### Heading 4th level
|
||||||
|
##### Heading 5th level
|
||||||
|
###### Heading 6th level
|
||||||
|
|
||||||
|
Emphasis text styles
|
||||||
|
*Italic*
|
||||||
|
**Bold**
|
||||||
|
|
||||||
|
Hyperlink
|
||||||
|
[Link](https://ayanova.com)
|
||||||
|
|
||||||
|
Image
|
||||||
|

|
||||||
|
|
||||||
|
Quote block
|
||||||
|
> Blockquote
|
||||||
|
> more block quote
|
||||||
|
|
||||||
|
Unordered list
|
||||||
|
* List
|
||||||
|
* List
|
||||||
|
* List
|
||||||
|
|
||||||
|
Ordered list
|
||||||
|
1. One
|
||||||
|
2. Two
|
||||||
|
3. Three
|
||||||
|
|
||||||
|
Nested lists
|
||||||
|
* First
|
||||||
|
* subitem One
|
||||||
|
* subitem Two
|
||||||
|
* Second
|
||||||
|
1. sub one
|
||||||
|
2. sub two
|
||||||
|
|
||||||
|
Horizontal rule
|
||||||
|
---
|
||||||
|
|
||||||
|
`Inline block` with backticks
|
||||||
|
|
||||||
|
```
|
||||||
|
# Multi-line block
|
||||||
|
print '3 backticks or'
|
||||||
|
print 'indent 4 spaces'
|
||||||
|
``` ";
|
||||||
o.Tags = RandomTags(f);
|
o.Tags = RandomTags(f);
|
||||||
|
|
||||||
o.UserId = f.Random.Int(1, SeededUserCount);
|
o.UserId = f.Random.Int(1, SeededUserCount);
|
||||||
|
|||||||
Reference in New Issue
Block a user