Example #1
0
    def do_eqarr(self, elm):
        """
		the Array object
		"""
        return ARR.format(text=BRK.join([
            t
            for stag, t, e in self.process_children_list(elm, include=('e', ))
        ]))
Example #2
0
    def do_m(self, elm):
        """
		the Matrix object
		"""
        rows = []
        for stag, t, e in self.process_children_list(elm):
            if stag is 'mPr':
                pass
            elif stag == 'mr':
                rows.append(t)
        return M.format(text=BRK.join(rows))
Example #3
0
	def do_m(self,elm):
		"""
		the Matrix object
		"""
		rows = []
		for stag,t,e in self.process_children_list(elm):
			if stag is 'mPr':
				pass
			elif stag == 'mr':
				rows.append(t)
		return M.format(text=BRK.join(rows))
Example #4
0
	def do_eqarr(self,elm):
		"""
		the Array object
		"""
		return ARR.format(text=BRK.join(
			[t for stag,t,e in self.process_children_list(elm,include=('e',))]))