Sha256: 71a2d0004052ec396be43c9c80190f4b40d0b13ad8fb75f857d46c820ea4d297
Contents?: true
Size: 499 Bytes
Versions: 14
Compression:
Stored size: 499 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 EOB_MARKER = /^\^\s*?\n/ # Parse the EOB marker at the current location. def parse_eob_marker @src.pos += @src.matched_size @tree.children << new_block_el(:eob) true end define_parser(:eob_marker, EOB_MARKER) end end end
Version data entries
14 entries across 13 versions & 5 rubygems