python-creole
python-creole copied to clipboard
Creole markup tools written in Python.
e.g.: https://github.com/jedie/python-creole/runs/7930445173
IMHO we should move the creole macro sourcecode to a better place. And should we enable the `` as default? Maybe change the way `` is activated, now.
Maybe change the `` code with: ``` python def headlines2html(headlines): cur_level = 0 result = [] for level, content in headlines: while level>cur_level: result.append('\t'*cur_level+'') cur_level += 1 while level
Bumps [cryptography](https://github.com/pyca/cryptography) from 37.0.4 to 39.0.1. Changelog Sourced from cryptography's changelog. 39.0.1 - 2023-02-07 * **SECURITY ISSUE** - Fixed a bug where ``Cipher.update_into`` accepted Python buffer protocol objects, but allowed...
There is no documented way to use the command line script creole2html for standard creole 1.0 linebreaks. (Because of the default `blog_line_breaks=True` in `creole/__init__.py` , which cannot be changed there,...
```python3 >>> import creole >>> creole.__version__ '1.4.10' >>> creole2html("\n== heading \n\nWiki style\\\\line breaks.", blog_line_breaks=False) '== heading \n\nWiki style\nline breaks.' >>> creole2html("\n== heading \n\nWiki style\\\\line breaks.", blog_line_breaks=True) 'heading\n\nWiki style\nline breaks.' ```...
Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.6.15 to 2022.12.7. Commits 9e9e840 2022.12.07 b81bdb2 2022.09.24 939a28f 2022.09.14 aca828a 2022.06.15.2 de0eae1 Only use importlib.resources's new files() / Traversable API on Python ≥3.11 ... b8eb5e9 2022.06.15.1...