markdown2 :: MdIndentedCodeBlock :: use_tabs
Does this block use tabs instead of spaces?markdown2 :: MdIndentedCodeBlock :: use_tabs=
Does this block use tabs instead of spaces?markdown2 $ MdIndentedCodeBlock :: SELF
Type of this instance, automatically specialized in every classmarkdown2 :: markdown_latex_rendering $ MdIndentedCodeBlock :: render_latex
Renderself as HTML
			markdown2 :: markdown_md_rendering $ MdIndentedCodeBlock :: render_md
Renderself as Markdown
			markdown2 $ MdIndentedCodeBlock :: to_s_attrs
Returnsself attributes as a String
			markdown2 :: MdBlock :: can_contain
Can this block containblock?
			core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			markdown2 :: MdCodeBlock :: defaultinit
markdown2 :: MdNode :: defaultinit
core :: Object :: defaultinit
markdown2 :: MdBlock :: defaultinit
markdown2 :: MdBlock :: is_container=
Can this block contain other blocks?core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			markdown2 :: MdNode :: location=
Node location in original markdowncore :: Object :: output_class_name
Display class name on stdout (debug only).markdown2 :: MdNode :: post_process
Accept the visit of aMdPostProcessor
			markdown2 :: MdNode :: render_raw_text
Renderself as raw text
			markdown2 :: MdIndentedCodeBlock :: use_tabs
Does this block use tabs instead of spaces?markdown2 :: MdIndentedCodeBlock :: use_tabs=
Does this block use tabs instead of spaces?
# A block code that starts with an indent
class MdIndentedCodeBlock
	super MdCodeBlock
	# Does this block use tabs instead of spaces?
	var use_tabs: Bool
	redef fun to_s_attrs do return "{super}, use_tabs={use_tabs}"
end
					lib/markdown2/markdown_ast.nit:236,1--244,3
				
redef class MdIndentedCodeBlock
	redef fun render_latex(v) do
		var directive = if v.use_listings then "lstlisting" else "verbatim"
		v.add_line
		v.add_indent
		v.add_raw "\\begin\{{directive}\}"
		v.add_line
		v.add_raw literal or else ""
		v.add_line
		v.add_indent
		v.add_raw "\\end\{{directive}\}"
		v.add_line
	end
end
					lib/markdown2/markdown_latex_rendering.nit:190,1--203,3
				
redef class MdIndentedCodeBlock
	redef fun render_md(v) do
		var literal = self.literal
		if literal == null then return
		var lines = literal.split("\n")
		for i in [0..lines.length[ do
			if i == lines.length - 1 then continue
			var line = lines[i]
			if line.is_empty then
				v.add_raw "\n"
			else
				v.add_indent
				if use_tabs then
					v.add_raw "\t"
				else
					v.add_raw " " * 4
				end
				v.add_raw line
				v.add_line
			end
		end
	end
end
					lib/markdown2/markdown_md_rendering.nit:106,1--129,3