This commit is contained in:
elapouya 2023-03-12 11:04:03 +01:00
parent 6e51079b2a
commit d9801fd6e4
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
0.16.6 (2023-03-12)
-------------------
- PR #482 - thanks to dreizehnutters
0.16.5 (2023-01-07)
-------------------
- PR #467 - thanks to Slarag

View File

@ -4,7 +4,7 @@ Created : 2015-03-12
@author: Eric Lapouyade
"""
__version__ = '0.16.5'
__version__ = '0.16.6'
# flake8: noqa
from .inline_image import InlineImage

View File

@ -18,6 +18,8 @@ rt.add('some violet', color='#ff00ff')
rt.add(' and ')
rt.add('some striked', strike=True)
rt.add(' and ')
rt.add('some Highlighted', highlight='#ffff00')
rt.add(' and ')
rt.add('some small', size=14)
rt.add(' or ')
rt.add('big', size=60)