# File lib/org-ruby/html_output_buffer.rb, line 94 def pop_mode(mode = nil) m = super(mode) if HtmlBlockTag[m] unless ((mode_is_table?(m) and skip_tables?) or (m == :src and !@options[:skip_syntax_highlight] and defined? Pygments)) add_paragraph if @new_paragraph @new_paragraph = true @logger.debug "</#{HtmlBlockTag[m]}>" @output << "</#{HtmlBlockTag[m]}>" end end @list_indent_stack.pop end