Search

[highlight.js] fix(rust): add support for r# raw identifiers

오픈소스
highlight.js
이름
이재백

오픈소스 선정 및 이유

3924
issues
let r#use = "value" begin: [ /let/, /\s+/, /(?:mut\s+)?/, hljs.UNDERSCORE_IDENT_RE // r#use -> not matching with UNDERSCORE_INDENT_RE ], className: { 1: "keyword", 3: "keyword", 4: "variable" } const UNDERSCORE_IDENT_RE = '[a-zA-Z_]#?\\w*'; // 이렇게 rust.js에 추가!
JavaScript
복사