Alkis Georgopoulos

Results 34 comments of Alkis Georgopoulos

We're also affected by this; we're using Ronn to generate ltsp.org man pages from markdown, and when we have a line like `sed 's/one/two/'`, Ronn converts it to `sed ´s/one/two/´`,...

Hmm actually \(cq isn't appropriate; this renders as RIGHT SINGLE QUOTATION MARK' (U+2019) which is still invalid code. `man ls` on the other hand uses plain single quotes, NOT escaped,...

Recent notes about this: 1. That PPA no longer has up-to-date packages 2. Building in Ubuntu also required installing this package: ```shell apt install libjson-glib-dev ````

I'd love to see that as well. My use case would be to display different shell instructions based on the user's Linux distribution. ```shell | Ubuntu | Fedora | SUSE...

+1 for this feature request, it's priceless and it should be quite easy to implement.

Hi, I've implemented [GeSHi](https://github.com/GeSHi/geshi-1.0) highlighters for two Greek educational programming languages for my SMF forum, and I'm looking to migrate them to a javascript-based solution. I.e. support for Unicode keywords...

Thank you very much @joshgoebel, indeed setting $pattern to the Greek unicode range solved that issue. Another unicode-related issue concerns the language name and aliases; that is, [my highlighter](https://alkisg.mysch.gr/steki/Themes/default/scripts/highlight-glossa.js) gets...

Yeah I've used aliases and I think the problem is that there's some place in the code that's not unicode enabled. I've tested both of the following language definitions: ```...

Indeed, setting `languageDetectRe:/\blang(?:uage)?-([\u0386-\u03ce\w-]+)/i` fixed the issue. Thank you very much all for your code, and especially @joshgoebel for your help on this. :)