오픈소스 선정 및 이유
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
복사