Sha256: 0894ce65dc0b84040d7ed556e659ce5228b026f8f3acc06eac71fc64bc2c7a7e
Contents?: true
Size: 528 Bytes
Versions: 75
Compression:
Stored size: 528 Bytes
Contents
# -*- coding: utf-8 -*- # #-- # Copyright (C) 2009-2016 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
75 entries across 72 versions & 18 rubygems