Re: Using re to find unicode ranges

2008-09-29 Thread Eric Abrahamsen
On Sep 29, 11:03 pm, "Mark Tolonen" <[EMAIL PROTECTED]> wrote: > "Eric Abrahamsen" <[EMAIL PROTECTED]> wrote in message > > news:[EMAIL PROTECTED] > > > Is it possible to use the re module to find runs of characters within a > > certain Unicode range? > > > I'm writing a Markdown extension to go o

Re: Using re to find unicode ranges

2008-09-29 Thread Mark Tolonen
"Eric Abrahamsen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Is it possible to use the re module to find runs of characters within a certain Unicode range? I'm writing a Markdown extension to go over text and wrap blocks of consecutive Chinese characters in tags for nice

Re: Using re to find unicode ranges

2008-09-29 Thread Paul McGuire
On Sep 29, 8:17 am, Eric Abrahamsen <[EMAIL PROTECTED]> wrote: > Is it possible to use the re module to find runs of characters within   > a certain Unicode range? > > I'm writing a Markdown extension to go over text and wrap blocks of   > consecutive Chinese characters in tags for   > nice stylin

Using re to find unicode ranges

2008-09-29 Thread Eric Abrahamsen
Is it possible to use the re module to find runs of characters within a certain Unicode range? I'm writing a Markdown extension to go over text and wrap blocks of consecutive Chinese characters in tags for nice styling in an HTML page. The available hooks appear to be a pre- processor (wh