plint

French poetry validator (local mirror of https://gitlab.com/a3nm/plint)
git clone https://a3nm.net/git/plint/
Log | Files | Refs | README

commit f77a85e132d83cb9a32c4e94069816f3e4398a35
parent 537c0e4595038d9e676cf137b9703394e296450e
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Sat, 19 May 2012 20:19:10 +0200

forbidden hemistiche words

Diffstat:
hemistiches.py | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/hemistiches.py b/hemistiches.py @@ -5,8 +5,17 @@ hemis_types = { 'bad' : '!', # something wrong 'cut' : '?', # falls at the middle of a word 'fem' : '\\', # preceding word ends by a mute e + 'forbidden' : '#', # last word of hemistiche cannot occur at end of hemistiche } +# these words are forbidden at hemistiche +forbidden_hemistiche = [ + "le", + "la", + ] + +def align2str(align): + return ''.join([x[0] if isinstance(x, tuple) else x for x in align]) def check_spaces(align, pos): if pos >= len(align): @@ -27,6 +36,8 @@ def check_hemistiche(align, pos, hem): return ("bad", pos) if hem == 0: # hemistiche should end here, check that this is a word boundary + if (align2str(align[:pos+1]).split()[-1]) in forbidden_hemistiche: + return ("forbidden", pos) return (check_spaces(align, pos), pos) if hem < 0: # hemistiche falls at the middle of a vowel cluster