This commit is contained in:
2020-08-04 19:41:02 +00:00
parent 28d03a1b4d
commit 1e27705528
2 changed files with 255 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
# TAGS EXTENSION
The Tags extension can be used to make bulk changes to selected item's Tags collection.
## Select
Extensions work with selected items from data tables. Use the checkbox in the first column to make selections. If no checkbox column is available that means either the currently logged in user doesn't have rights to make bulk changes or that particular data table doesn't support bulk changes.
## Add
Add a single tag to all selected objects. Note that you can enter a single tag at a time, this extension does not currently support multiple tags at once
## Change
Replace a single tag with a new tag on all selected objects.
## Remove
Remove a matching tag from all selected objects.

View File

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