Celes 0.1 — a tag-based markup language toolkit
Project description
Celes 0.1
A tag-based markup language and toolkit. Write documents in Celes, convert to HTML, validate, or round-trip with Markdown.
Install
pip install celes
CLI Usage
# Convert a Celes file to HTML
celes parse doc.celes doc.html
# Validate a Celes file
celes validate doc.celes
# Convert Markdown to Celes
celes md README.md README.celes
# Convert Celes to Markdown
celes tomd doc.celes doc.md
Python API
from celes import parse_celes, validate_celes, convert_md_to_celes, convert_celes_to_md
# Parse to HTML
html = parse_celes(source)
# Validate
is_valid, errors = validate_celes(source)
for e in errors:
print(e) # " ✗ Line 3: <header> is missing required -size attribute"
# Convert
celes_source = convert_md_to_celes(markdown_source)
markdown_source = convert_celes_to_md(celes_source)
Celes Syntax (0.1)
<!Celes-0.1>
; This is a comment
<title>{My Page}
<header -size=1>{Hello, World!}
<line>{This is <bold>{bold} and <italic>{italic} text.}
<list -bullet=circle>{Item one}<sublist -bullet=circle>{Sub-item}
<list -bullet=number>{Numbered item}
<table>{Name, Age}
<item>{Alice, 30}
<codeblock>{print("hello")}
<image>{photo.png}
<linkimage -image=photo.png>{https://example.com}
<blockquote>{A quote <nestquote>{nested}}
<line -align=center>{Centered}
<newline>
<pagebreak>
<insertspace>
<empty>{<raw> text with <angle> brackets}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
celes-0.1.5.tar.gz
(15.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
celes-0.1.5-py3-none-any.whl
(17.7 kB
view details)
File details
Details for the file celes-0.1.5.tar.gz.
File metadata
- Download URL: celes-0.1.5.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3266243f60ca57a76998b79dfd1102a25b26df2b9dc0ee947bec27ae77b536ed
|
|
| MD5 |
0f8b537ae41f611bc3a49a8fe97d86df
|
|
| BLAKE2b-256 |
eef21626196f316906338daf40bb6d6fbd5d05891b0503ad1d8a387d08b7539f
|
File details
Details for the file celes-0.1.5-py3-none-any.whl.
File metadata
- Download URL: celes-0.1.5-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16381a887268b5d4f444e351b9e9058cc40ff3f1ac5efc03850d067ab91c63a8
|
|
| MD5 |
108a709e32cd17a5e938eaee30d82813
|
|
| BLAKE2b-256 |
19dcc4406a5aac86e5c6533df218dfd10d49c4140033ea5a60234510aa088469
|