-
@nbp noticed that lemire/simdjson initially scans string literals in JSON input without expanding escape sequences.
We could do that. It would likely reduce copies.
-
**Name of the lexer**
ocaml
**Code sample**
```ocaml
let isquote c = match c with '"' | '\'' -> true | _ -> false
```
Link to sample on rouge.jneen.net : http://rouge.jneen.net/v3.26.0/oca…
-
If you directly juxtapose a macro with a string, the macro is supplied a raw literal version of the string **as if the macro were a string macro,** even though it's not.
Here is an example:
```jul…
-
Large grammars can be difficult to manage in a single file. Being able to split grammars among multiple files would increase the feasible scale of applications, such as by enabling the separation of l…
-
### Versions
* Python: 3.6
* OS: opensuse
* Kivy: master (~1.11)
* Kivy installation method: git clone
### Description
The line-breaks added when the width of a CodeInput is small prev…
-
```
Lexing error on this page http://en.wiktionary.org/wiki/Dutch results in giving
"ʌtʃ" as the pronounciation of
http://wiktionary.dbpedia.org/page/Dutch-English
```
Original issue reported on co…
-
All errors are currently `Box`'ed with little actionable information. The library should provide for better error handling mechanisms for lexing, parsing and validation.
-
```
Lexing error on this page http://en.wiktionary.org/wiki/Dutch results in giving
"ʌtʃ" as the pronounciation of
http://wiktionary.dbpedia.org/page/Dutch-English
```
Original issue reported on co…
-
Hi!
I’m tinkering with writing a transpiler and am currently in the lexing stage. In my `Token` enum I have the following variant: `CurlyClose`. I’d like to implement the `Display` trait for `Token…
-
Currently, unicode escapes themselves are valid characters which is somewhat confusing, I'd expect the following escape to have to be written as `'\u0a00'` instead of `\u0a00`:
![image](https://githu…