This commit is contained in:
2020-06-02 22:17:22 +00:00
parent 41fcc81bed
commit 245988b195

View File

@@ -607,129 +607,129 @@ namespace AyaNova.Util
u.UserOptions.CurrencyName = "USD"; u.UserOptions.CurrencyName = "USD";
u.UserOptions.UiColor = Fake.Internet.Color(); u.UserOptions.UiColor = Fake.Internet.Color();
u.Wiki = @" // u.Wiki = @"
# Markdown quick reference for Wiki pages // # Markdown quick reference for Wiki pages
*** // ***
*** // ***
<br> // <br>
## Markdown and Wiki documents // ## Markdown and Wiki documents
Wiki's are formatted using **[Markdown](https://en.wikipedia.org/wiki/Markdown)** a plain text formatting language. // Wiki's are formatted using **[Markdown](https://en.wikipedia.org/wiki/Markdown)** a plain text formatting language.
This document is a quick reference guide and at the bottom is a link to a more comprehensive guide online. // This document is a quick reference guide and at the bottom is a link to a more comprehensive guide online.
You can also use the formatting toolbar above to perform the same tasks. // You can also use the formatting toolbar above to perform the same tasks.
# Headings // # Headings
# Heading 1st level // # Heading 1st level
## Heading 2nd level // ## Heading 2nd level
### Heading 3rd level // ### Heading 3rd level
#### Heading 4th level // #### Heading 4th level
##### Heading 5th level // ##### Heading 5th level
###### Heading 6th level // ###### Heading 6th level
*** // ***
# Emphasis text styles // # Emphasis text styles
*Italic* // *Italic*
**Bold** // **Bold**
~~Strike-through~~ // ~~Strike-through~~
***Bold And Italic*** // ***Bold And Italic***
# Quote blocks // # Quote blocks
> ""Morbi eget dapibus felis. Vivamus venenatis porttitor tortor sit amet rutrum. // > ""Morbi eget dapibus felis. Vivamus venenatis porttitor tortor sit amet rutrum.
Pellentesque aliquet quam enim, eu volutpat urna rutrum a. Nam vehicula nunc // Pellentesque aliquet quam enim, eu volutpat urna rutrum a. Nam vehicula nunc
> // >
> mauris, a ultricies libero efficitur sed. *Class aptent* taciti sociosqu ad // > mauris, a ultricies libero efficitur sed. *Class aptent* taciti sociosqu ad
litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie // litora torquent per conubia nostra, per inceptos himenaeos. Sed molestie
imperdiet consectetur."" // imperdiet consectetur.""
# Lists // # Lists
### Unordered list // ### Unordered list
* List // * List
* List // * List
* List // * List
### Ordered list // ### Ordered list
1. One // 1. One
2. Two // 2. Two
3. Three // 3. Three
### Auto number ordered list // ### Auto number ordered list
Ordered lists don't need the numbers to be in order, just that they start with 1: // Ordered lists don't need the numbers to be in order, just that they start with 1:
1. Item // 1. Item
1. another item // 1. another item
1. more item // 1. more item
### Nested lists // ### Nested lists
* First // * First
* subitem One // * subitem One
* subitem Two // * subitem Two
* Second // * Second
1. sub one // 1. sub one
2. sub two // 2. sub two
# Blank lines // # Blank lines
You can force extra blank lines by entering `<br>` here are two blank ... // You can force extra blank lines by entering `<br>` here are two blank ...
<br> // <br>
<br> // <br>
...lines. // ...lines.
# Horizontal rules // # Horizontal rules
*** // ***
# Blocks // # Blocks
`Inline block` with backticks // `Inline block` with backticks
``` // ```
Multi-line block // Multi-line block
print '3 backticks or' // print '3 backticks or'
print 'indent 4 spaces' // print 'indent 4 spaces'
``` // ```
# Task lists // # Task lists
- [ ] task one // - [ ] task one
- [x] task two (completed) // - [x] task two (completed)
# TABLES // # TABLES
| First | Last | Year | // | First | Last | Year |
| -------- | -------- | -------- | // | -------- | -------- | -------- |
| John | Doe | 2000 | // | John | Doe | 2000 |
| Mary | Smith | 2001 | // | Mary | Smith | 2001 |
| T. | Persson | 2010 | // | T. | Persson | 2010 |
# Hyperlinks // # Hyperlinks
Inline text link and and optional tooltip: // Inline text link and and optional tooltip:
Link to [our website](https://ayanova.com ""Hover text tooltip"") example // Link to [our website](https://ayanova.com ""Hover text tooltip"") example
If you don't need an inline link you can simply enter it in angle brackets: // If you don't need an inline link you can simply enter it in angle brackets:
<https://ayanova.com> // <https://ayanova.com>
Even email links work: // Even email links work:
<support@ayanova.com> // <support@ayanova.com>
<br> // <br>
You can also use emphasis characters with links: // You can also use emphasis characters with links:
Link to **[our website](https://ayanova.com)** example // Link to **[our website](https://ayanova.com)** example
# Image // # Image
This is how you insert an image into a wiki // This is how you insert an image into a wiki
![Image](https://www.ayanova.com/images/AyaNovaIcon256.png) // ![Image](https://www.ayanova.com/images/AyaNovaIcon256.png)
# Emojis // # Emojis
As with all areas of AyaNova where you can enter text, you can also use emoji characters: // As with all areas of AyaNova where you can enter text, you can also use emoji characters:
# 😀⚽🏒🍕🚗☀❤😎 // # 😀⚽🏒🍕🚗☀❤😎
<br> // <br>
# Markdown guide // # Markdown guide
A more detailed markdown guide is available here: // A more detailed markdown guide is available here:
<https://www.markdownguide.org/> // <https://www.markdownguide.org/>
*** // ***
"; // ";
//this seems wrong but is actually faster!? //this seems wrong but is actually faster!?
UserBiz Biz = UserBiz.GetBiz(ServiceProviderProvider.DBContext); UserBiz Biz = UserBiz.GetBiz(ServiceProviderProvider.DBContext);