mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix namespacing
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b6dff84acc
commit
6d59907c0f
3 changed files with 32 additions and 25 deletions
|
|
@ -1,12 +1,11 @@
|
|||
#!/usr/local/bin/ruby
|
||||
# Illustration of a script to convert an RDoc-style file to a LaTeX
|
||||
# document
|
||||
# Illustration of a script to convert an RDoc-style file to a LaTeX document
|
||||
|
||||
require 'rdoc/markup/simple_markup'
|
||||
require 'rdoc/markup/simple_markup/to_latex'
|
||||
require 'rdoc/markup'
|
||||
require 'rdoc/markup/to_latex'
|
||||
|
||||
p = SM::SimpleMarkup.new
|
||||
h = SM::ToLaTeX.new
|
||||
p = RDoc::Markup.new
|
||||
h = RDoc::Markup::ToLaTeX.new
|
||||
|
||||
#puts "\\documentclass{report}"
|
||||
#puts "\\usepackage{tabularx}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue