In order to go to editing organizational information form:
- Go to admin panel: Manage events -> Your event.
- In top menu choose Event
- Choose Edit event data.
- Go to last tab: Organizational information
I. Formatting
Content of organizational information can be formatted up to some point. It requires special syntax.
Text's look
# Header 1
## Header 2
### Header 3
etc..
**Bold text**
*Italic text*
Links to external pages
[text of a link](https://panel-rejestracyjny.pl)
Paragraphs
In order to separate text to different paragraphs it must be separated with one empty line:
Paragraph 1
Paragraph 2
II. Lists
In order to create unordered list with indentation you must use following syntax:
List:
- element 1
- element 2
- element 3
Or:
List:
* element 1
* element 2
If you want to increase indentation you must add 4 spaces like below:
List:
- element 1
- element 1.1
- element 2
For ordered list you must use numbers:
List:
1. Element 1.
2. Element 2.
III. Tables
To create a table you need yo use following syntax:
| First Header | Second Header |
| ------------- | ------------- |
| Content Cell | Content Cell |
| Content Cell | Content Cell |
It will create table as follows:
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
Be mindful about number of columns. In mobile view there might not be enough space to properly render big table.