Go to the source code of this file.
Namespaces | |
namespace | ListClassesAndMethods |
Classes | |
class | l_Section |
class | sub_section |
Functions | |
def | usage |
print usage info | |
def | makeSafe |
conversion of strings to LaTeX compliant | |
def | makeList |
Variables | |
string | __copyright__ |
Short auto-documentation for SLIMpy. | |
string | __license__ |
dictionary | OPTIONS |
string | TITLE = 'SLIMpy methods and classes' |
dictionary | HEADER |
dictionary | FOOTER |
dictionary | LINEEND = { 'LaTeX': '\n', 'HTML': '\n', 'TEXT': '\n' } |
dictionary | LINEBREAK = { 'LaTeX': '\n', 'HTML': '<BR>\n', 'TEXT': '\n' } |
dictionary | HLINE = { 'LaTeX': '\n', 'HTML': '<HR>\n', 'TEXT': '#'*30+'\n' } |
dictionary | SECTION = { 'LaTeX': ['\\section*{','}\n'], 'HTML': ['<H3>','</H3>\n'], 'TEXT': ['# ','\n\n'] } |
dictionary | SUBSECTION = { 'LaTeX': ['\\subsection*{','}\n'], 'HTML': ['<H4>','</H4>\n'], 'TEXT': ['### ','\n'] } |
dictionary | ITEMIZE = { 'LaTeX': ['\\begin{itemize}\n','\\end{itemize}\n'], 'HTML': ['<UL>\n','</UL>\n'], 'TEXT': ['\n','\n'] } |
dictionary | ITEM = { 'LaTeX': ['\\item ','\n'], 'HTML': ['<LI>','</LI>\n'], 'TEXT': [' || ','\n'] } |
dictionary | PARAGRAPH = { 'LaTeX': ['\n','\n'], 'HTML': ['<P>','</P>\n'], 'TEXT': ['','\n'] } |
string | FORMAT = 'TEXT' |
list | FileIn = args[0] |
Output = None | |
tuple | pickle_file = open(FileIn) |
tuple | Document = pickle.load( pickle_file ) |