Method: Kramdown::Parser::Base#warning
- Defined in:
- lib/kramdown/parser/base.rb
#warning(text) ⇒ Object
Add the given warning text to the warning array.
84 85 86 87 |
# File 'lib/kramdown/parser/base.rb', line 84 def warning(text) @warnings << text # TODO: add position information end |