def __init__(self, converter):
     NodeConverter.__init__(self, converter)
     self.parser = Parser('html', 'default')
     self.err = True
     if converter.defaults['error'] in ['off', 'false']:
         self.err = False
     self.num = 0
Beispiel #2
0
 def __init__(self, converter):
     NodeConverter.__init__(self, converter)
     namespace = get_converter_namespace()
     if 'latex_labels' not in namespace:
         namespace['latex_labels'] = list()
     self.handle = {
         'equation': self.handle_equation,
         'align': self.handle_align,
     }
 def __init__(self, converter):
     NodeConverter.__init__(self, converter)
     namespace = get_converter_namespace()
     if 'block_ref' not in namespace:
         namespace['block_ref'] = dict()
 def __init__(self, converter):
     NodeConverter.__init__(self, converter)
     namespace = get_converter_namespace()
     if 'block_ref' not in namespace:
         namespace['block_ref'] = dict()
 def __init__(self, converter):
     NodeConverter.__init__(self, converter)
     namespace = get_converter_namespace()
     if 'macro' not in namespace:
         namespace['macro'] = dict()
 def __init__(self, converter):
     NodeConverter.__init__(self, converter)
     namespace = get_converter_namespace()
     if 'macro' not in namespace:
         namespace['macro'] = dict()
 def __init__(self, converter):
     NodeConverter.__init__(self, converter)
     namespace = get_converter_namespace()
     if "latex_labels" not in namespace:
         namespace["latex_labels"] = list()
     self.handle = {"equation": self.handle_equation, "align": self.handle_align}