mirror of
https://git.cmoser.eu/tinytools/django-tinywiki.git
synced 2026-02-04 06:06:33 +01:00
2025.09.17-19:07:57
This commit is contained in:
12
tinywiki/parser/bbcode/simple_formatters.py
Normal file
12
tinywiki/parser/bbcode/simple_formatters.py
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
SIMPLE_HEADER_FORMATTERS = [
|
||||
(('h1',"<h1>%(value)s</h1>"),{}),
|
||||
(('h2',"<h2>%(value)s</h2>"),{}),
|
||||
(('h3',"<h3>%(value)s</h3>"),{}),
|
||||
(('h4',"<h4>%(value)s</h4>"),{}),
|
||||
(('h5',"<h5>%(value)s</h5>"),{}),
|
||||
(('h6',"<h6>%(value)s</h6>"),{}),
|
||||
(('copy',"©"),{'standalone':True}),
|
||||
(('reg',"®"),{'standalone':True}),
|
||||
(('trade',"™"),{'standalone':True}),
|
||||
]
|
||||
Reference in New Issue
Block a user