From: David G. <go...@us...> - 2002-07-07 14:28:00
|
Adam Chodorowski wrote: > So apparantly ``.. Inneh=E5ll::`` is recognized as a valid directive at *so= me* > level, but later turned into a comment instead. I haven't tried finding o= ut > what's wrong, yet. I haven't had a chance to look at the code, and I won't for a few days (we have visitors), but I do have an idea. Probably, the directive-detecting regular expression is checking for a "simple name" which is alphanumerics plus "-", "_", and ".". "Alphanumerics" is probably limited to "[a-zA-Z0-9]", and should be expanded to cover the locale's idea of what letters should be, including accents. The "=E5" in "Inneh=E5ll" is probably throwing it off. --=20 David Goodger <go...@us...> Open-source projects: - Python Docutils: http://docutils.sourceforge.net/ (includes reStructuredText: http://docutils.sf.net/rst.html) - The Go Tools Project: http://gotools.sourceforge.net/ |