# File lib/rubypants.rb, line 451
  def character_entities
    {
      :single_left_quote  => "\u2018",
      :double_left_quote  => "\u201C",
      :single_right_quote => "\u2019",
      :double_right_quote => "\u201D",
      :em_dash            => "\u2014",
      :en_dash            => "\u2013",
      :ellipsis           => "\u2026",
    }
  end