This commit is contained in:
2020-04-15 23:08:51 +00:00
parent a6737df4f0
commit 41d1c57dba
2 changed files with 69 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ Headings
##### Heading 5th level
###### Heading 6th level
Alternate text styles
Emphasis text styles
*Italic*
**Bold**
@@ -24,7 +24,7 @@ Hyperlink
Image
![Image](https://www.ayanova.com/images/AyaNova60x60.png)
Block quotes
Quote block
> Blockquote
> more block quote
@@ -38,9 +38,23 @@ Ordered list
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'
```
=-=-=-=-=

View File

@@ -673,6 +673,59 @@ namespace AyaNova.Util
o.UserType = randomUserType;
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
![Image](https://www.ayanova.com/images/AyaNova60x60.png)
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.UserId = f.Random.Int(1, SeededUserCount);