plint

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

commit 020dbb602802093ab2cfdcc72bf97ecb04252ccd
parent ef707724ad6c6365e3d8f9498dace681a762efec
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Fri,  2 Nov 2012 10:08:00 +0100

use a better choice of vowels for acronyms

Diffstat:
metric.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/metric.py b/metric.py @@ -139,7 +139,7 @@ def parse(text, phon, bound, forbidden_ok, hiatus_ok, diaeresis): if (x == 'w'): new_word.append("doublevé") else: - new_word.append(x + "a") + new_word.append(x + "é") words[i] = ''.join(new_word)