On Thu, Jan 15, 2009 at 4:19 PM, Waylan Limberg <[email protected]> wrote: > Very nice. However there seems to be some issues with the internal > links syntax. I'm not sure if that is a limitation of the markdown > implementation your using or your own code. Anyway, I can't use any > links with dashes or underscores and the bracketed links don't work > right if the link contains more than 2 camelcase words in it. I've > added some samples to the sandbox and the problems should be > self-evident.
I'd admit I was a bit lazy with the wikiwords syntax, here's what I'm matching against: WIKI_WORD = /\b[A-Z][a-z]+[A-Z]\w+\b/ BRACKETED_WIKI_WORD = /\[\[\s*([A-Z][a-z]+([A-Z][a-z]+)?)\s*\]\]/ improvements always welcome :) JS > -- > ---- > Waylan Limberg > [email protected] > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Gitorious" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/gitorious?hl=en -~----------~----~----~----~------~----~------~--~---
