This commit is contained in:
Eric Lapouyade 2021-05-09 12:36:28 +02:00
parent 60151d6677
commit ba9a4629e9
4 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
0.11.5 (2021-05-09)
-------------------
- PR #351
0.11.4 (2021-04-06) 0.11.4 (2021-04-06)
------------------- -------------------
- It is now possible to put InlineImage in header/footer - It is now possible to put InlineImage in header/footer

View File

@ -4,7 +4,7 @@ Created : 2015-03-12
@author: Eric Lapouyade @author: Eric Lapouyade
""" """
__version__ = '0.11.4' __version__ = '0.11.5'
import functools import functools
import io import io

View File

@ -28,7 +28,8 @@ rt.add('\nEt voilà ! ')
rt.add('\n1st line') rt.add('\n1st line')
rt.add('\n2nd line') rt.add('\n2nd line')
rt.add('\n3rd line') rt.add('\n3rd line')
rt.add('\n\n<cool>') rt.add('\aA new paragraph : <cool>\a')
rt.add('--- A page break here (see next page) ---\f')
for ul in ['single', 'double', 'thick', 'dotted', 'dash', 'dotDash', 'dotDotDash', 'wave']: for ul in ['single', 'double', 'thick', 'dotted', 'dash', 'dotDash', 'dotDotDash', 'wave']:
rt.add('\nUnderline : ' + ul + ' \n', underline=ul) rt.add('\nUnderline : ' + ul + ' \n', underline=ul)