method
list_end_for
v1_8_6_287 -
Show latest stable
- Class:
SM::ToLaTeX
list_end_for(fragment_type)private
No documentation available.
# File lib/rdoc/markup/simple_markup/to_latex.rb, line 320
def list_end_for(fragment_type)
case fragment_type
when ListBase::BULLET, ListBase::NUMBER, ListBase::UPPERALPHA, ListBase::LOWERALPHA, ListBase::LABELED
""
when ListBase::NOTE
"\\\\\n"
else
raise "Invalid list type"
end
end