Lesson 1 - Basic text syntax in SocialTexy
Texy! syntax
This part is derived from the original Texy! syntax.
Headings
First-level heading ################### Second-level heading ******************** Third-level heading =================== Fourth-level heading --------------------
Result
Your page
localhost
Paragraphs
Syntax
The first paragraph The second paragraph. The second sentence of the second paragraph. This is the third sentence which will be on the new line.
Stylized paragraphs:
Sit on your chair properly. .[check] Use keys to open doors. .[hint] Don't cut the red wire! .[warning] You can press <kbd>Ctrl</kbd> + <kbd>C</kbd> to copy text faster. .[keys] This syntax wasn't support on smartphones till the version 2.0. .[note] This example uses images from the Internet. If some of the links stop working, just replace them with any other image. .[note]
Result
Your page
localhost
Stylized paragraphs:
Sit on your chair properly.
Use keys to open doors.
Don't cut the red wire!
You can press Ctrl + C to copy text faster.
This example uses images from the Internet. If some of the links stop working, just replace them with any other image.
Phrases
Syntax
**Strong text** *emphasized text* 2^3 x_1
Result
Strong text emphasized text 23 x1
Source codes
Syntax
/---code cpp
#include<stdio.h>
main()
{
printf("Hello World");
}
\---
Result
#include<stdio.h> main() { printf("Hello World"); }
Special blocks
Syntax
/---html
<strong>This text is strong.</strong>**This text is not strong.**
\---
/---text
<strong>This text is not strong.</strong>**This text is not strong either.**
\---
/---comment
This is a comment which users cannot see.
\---
Result
Your page
localhost
Quotes
Syntax
> If it's on the Internet, then it must be true, and you can't question it. Abraham Lincoln .>
Result
If it's on the Internet, then it must be true, and you can't question it.
Abraham Lincoln
Links
Syntax
"Google":https://www.google.com
See Google:[https://www.google.com]
Or using references:
[google]: https://www.google.com
Visit [google]
Result
Your page
localhost
Target blank
"title .{target:_blank}":url
Images
[* folder/image.png .(Alternative text) *] [* folder/image.png .(Aligned left) <] [* folder/image.png .(Aligned right) >] .<> [* folder/image.png .(Centered image) *]
Result
Tables
Syntax
| First name | Last name | |---------------|---------------| | Homer | Simpson | | John | Smith |
Result
First name | Last name |
---|---|
Homer | Simpson |
John | Smith |
Lists
Syntax
- Item1 - Item2 - Item3 1) First 2) Second 3) Third a) First b) Second c) Third A) First B) Second C) Third I) First II) Second III) Third
Result
- Item1
- Item2
- Item3
- First
- Second
- Third
- First
- Second
- Third
- First
- Second
- Third
- First
- Second
- Third
Others
This reference is not complete yet, please, visit https://texy.info/…tax-podrobne#… for more information ...