···4141 | node :: rest ->
4242 entered_range node.loc;
4343 match node.value with
4444- | Hash_ident x | Text x ->
4444+ | Hash_ident x ->
4545+ {node with value = Text ("#" ^ x)} :: expand_eff ~forest rest
4646+ | Text x ->
4547 {node with value = Text x} :: expand_eff ~forest rest
4648 | Verbatim x ->
4749 {node with value = Verbatim x} :: expand_eff ~forest rest
+1
lib/frontend/DSL.ml
···9696 let braces = Fun.compose (locate_opt None) @@ Code.braces
97979898 let ident i = locate_opt None @@ Ident i
9999+ let hash_ident str = locate_opt None @@ Hash_ident str
99100100101 let ul = ident ["ul"]
101102 let li = ident ["li"]