module Stringex::StringExtensions::PublicInstanceMethods

def convert_miscellaneous_html_entities

to be generated by Textile.
Note: This isn't an attempt at complete conversion of HTML entities, just those most likely

Converts HTML entities (taken from common Textile/RedCloth formattings) into plain text formats.
def convert_miscellaneous_html_entities
  stringex_convert do
    translate! :html_entities
    cleanup_html_entities!
  end
end