Sha256: 6198603bf1b2772a0d44c145491354858a8b6f756aa7ccdc6ed75d2a6f9b7da2

Contents?: true

Size: 1.83 KB

Versions: 8

Compression:

Stored size: 1.83 KB

Contents

# -*- coding: utf-8 -*-
#
#--
# Copyright (C) 2009-2014 Thomas Leitner <t_leitner@gmx.at>
#
# This file is part of kramdown which is licensed under the MIT.
#++
#

module Kramdown
  module Parser
    class Kramdown

      TYPOGRAPHIC_SYMS = [['---', :mdash], ['--', :ndash], ['...', :hellip],
                          ['\\<<', '&lt;&lt;'], ['\\>>', '&gt;&gt;'],
                          ['<< ', :laquo_space], [' >>', :raquo_space],
                          ['<<', :laquo], ['>>', :raquo]]
      TYPOGRAPHIC_SYMS_SUBST = Hash[*TYPOGRAPHIC_SYMS.flatten]
      TYPOGRAPHIC_SYMS_RE = /#{TYPOGRAPHIC_SYMS.map {|k,v| Regexp.escape(k)}.join('|')}/

      # Parse the typographic symbols at the current location.
      def parse_typographic_syms
        start_line_number = @src.current_line_number
        @src.pos += @src.matched_size
        val = TYPOGRAPHIC_SYMS_SUBST[@src.matched]
        if val.kind_of?(Symbol)
          @tree.children << Element.new(:typographic_sym, val, nil, :location => start_line_number)
        elsif @src.matched == '\\<<'
          @tree.children << Element.new(:entity, ::Kramdown::Utils::Entities.entity('lt'),
                                        nil, :location => start_line_number)
          @tree.children << Element.new(:entity, ::Kramdown::Utils::Entities.entity('lt'),
                                        nil, :location => start_line_number)
        else
          @tree.children << Element.new(:entity, ::Kramdown::Utils::Entities.entity('gt'),
                                        nil, :location => start_line_number)
          @tree.children << Element.new(:entity, ::Kramdown::Utils::Entities.entity('gt'),
                                        nil, :location => start_line_number)
        end
      end
      define_parser(:typographic_syms, TYPOGRAPHIC_SYMS_RE, '--|\\.\\.\\.|(?:\\\\| )?(?:<<|>>)')

    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
motion-kramdown-0.5.1 lib/kramdown/parser/kramdown/typographic_symbol.rb
motion-kramdown-0.5.0 lib/kramdown/parser/kramdown/typographic_symbol.rb
kramdown-1.5.0 lib/kramdown/parser/kramdown/typographic_symbol.rb
kramdown-1.4.2 lib/kramdown/parser/kramdown/typographic_symbol.rb
kramdown-1.4.1 lib/kramdown/parser/kramdown/typographic_symbol.rb
kramdown-1.4.0 lib/kramdown/parser/kramdown/typographic_symbol.rb
kramdown-1.3.3 lib/kramdown/parser/kramdown/typographic_symbol.rb
kramdown-1.3.2 lib/kramdown/parser/kramdown/typographic_symbol.rb