Sha256: 9b4ed6d52eb1e33977640f216d03acdb9dc85f16abbf9601fb9f43691b072746
Contents?: true
Size: 528 Bytes
Versions: 15
Compression:
Stored size: 528 Bytes
Contents
# -*- coding: utf-8 -*- # #-- # Copyright (C) 2009-2015 Thomas Leitner <t_leitner@gmx.at> # # This file is part of kramdown which is licensed under the MIT. #++ # module Kramdown module Parser class Kramdown ESCAPED_CHARS = /\\([\\.*_+`<>()\[\]{}#!:|"'\$=-])/ # Parse the backslash-escaped character at the current location. def parse_escaped_chars @src.pos += @src.matched_size add_text(@src[1]) end define_parser(:escaped_chars, ESCAPED_CHARS, '\\\\') end end end
Version data entries
15 entries across 14 versions & 6 rubygems