Module: HTMLUtils
- Included in:
- Formatter
- Defined in:
- lib/bitclust/ridatabase.rb
Constant Summary collapse
- ESC =
{ '&' => '&', '<' => '<', '>' => '>', '"' => '"' }
- UNESC =
ESC.invert
{ '&' => '&', '<' => '<', '>' => '>', '"' => '"' }
ESC.invert