add: bozodown doc

This commit is contained in:
2025-07-09 02:20:58 +02:00
parent 00bc97465f
commit 6af8781aa2
12 changed files with 153 additions and 0 deletions

20
doc/bozodown/block.md Normal file
View File

@ -0,0 +1,20 @@
# Block
## Usage
```
-----
style
---
content
-----
```
| name | usage |
| --- | --- |
| style | Your custom css, multiline supported |
| content | Your bozodown |
## Effect
Create a div with custom css

13
doc/bozodown/checkbox.md Normal file
View File

@ -0,0 +1,13 @@
# Checkbox
## Usage
```
- [ ] your text
or
- [x] your text
```
## Effect
![](./checkbox.png)

BIN
doc/bozodown/checkbox.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

17
doc/bozodown/code.md Normal file
View File

@ -0,0 +1,17 @@
# Quote
## Usage
```
\```
your text
\```
```
## Effect
your text
to
```
your text
```

11
doc/bozodown/image.md Normal file
View File

@ -0,0 +1,11 @@
# Image
## Usage
```
![url]
```
## Effect
display the image

10
doc/bozodown/quote.md Normal file
View File

@ -0,0 +1,10 @@
# Quote
## Usage
```
`your text`
```
## Effect
your text -> `your text`

19
doc/bozodown/readme.md Normal file
View File

@ -0,0 +1,19 @@
# Bozodown
A markdown like, written in python, modulable
## Feature
### Text Formater
- [title](./title.md)
- [subtitle](./subtitle.md)
- [subsubtitle](./subsubtitle.md)
- [subsubsubtitle](./subsubsubtitle.md)
- [code](./code.md)
- [image](./image.md)
- [block](./block.md)
- [checkbox](./checkbox.md)
### Text Modifier
- [strong](./strong.md)
- [quote](./quote.md)

11
doc/bozodown/strong.md Normal file
View File

@ -0,0 +1,11 @@
# Strong
## Usage
```
**your text**
```
## Effect
your text -> **your text**

View File

@ -0,0 +1,13 @@
# Subsubsubtitle
## Usage
```
#### your text
```
## Effect
your text
to
#### your text

View File

@ -0,0 +1,13 @@
# Subsubtitle
## Usage
```
### your text
```
## Effect
your text
to
### your text

13
doc/bozodown/subtitle.md Normal file
View File

@ -0,0 +1,13 @@
# Subtitle
## Usage
```
## your text
```
## Effect
your text
to
## your text

13
doc/bozodown/title.md Normal file
View File

@ -0,0 +1,13 @@
# Title
## Usage
```
# your text
```
## Effect
your text
to
# your text