Line 16 in test/expanded_test.rb: ['subE', 0x2286, nil, "skip", "⊆", ],
The decoded char is supposed to be: ⫅
Line 655 in lib/htmlentities/mappings/expanded.rb:
'subE' => 0x2286, # ⊆
should be
'subE' => 0x2ac5, # ⫅
I found this using this C-based parser: https://github.com/lexborisov/myhtml
Maybe you can use it as a C extension in the htmlentities gem.
Line 16 in test/expanded_test.rb:
['subE', 0x2286, nil, "skip", "⊆", ],The decoded char is supposed to be:
⫅Line 655 in lib/htmlentities/mappings/expanded.rb:
'subE' => 0x2286, # ⊆should be
'subE' => 0x2ac5, # ⫅I found this using this C-based parser: https://github.com/lexborisov/myhtml
Maybe you can use it as a C extension in the htmlentities gem.