def __init__ (self, md, config):
        """Initialize the Markdwon inline pattern processor"""

        ## Store the configuration dict
        self.config = config

        ## Initialize the parent class
        LinkPattern.__init__ (self, LINK_RE, md)
    def __init__(self, md, config):
        """Initialize the Markdwon inline pattern processor"""

        ## Store the configuration dict
        self.config = config

        ## Initialize the parent class
        LinkPattern.__init__(self, LINK_RE, md)
Exemple #3
0
 def __init__(self, pattern, config):
     LinkPattern.__init__(self, pattern)
     self.config = config
Exemple #4
0
 def __init__(self, asset_processor, pattern, markdown_instance=None):
     LinkPattern.__init__(self, pattern, markdown_instance)
     self.asset_processor = asset_processor
Exemple #5
0
	def __init__(self, pattern, md, item, srcfile, faults):
		LinkPattern.__init__(self, pattern, md)
		self.item = item
		self.srcfile = srcfile
		self.faults = faults
Exemple #6
0
	def __init__(self, pattern, md, target, item):
		LinkPattern.__init__(self, pattern, md)
		self.target = target
		self.item = item
Exemple #7
0
 def __init__(self, pattern, config):
     LinkPattern.__init__(self, pattern)
     self.config = config