Exemple #1
0
    def process_string(self, string):
        """
		Its not generally safe to use markdown on a whole blocktag because the block
		may contain html already and there's no telling how nice it will play.
		"""
        string = wikify_string(string)
        return string
Exemple #2
0
    def process_string(self, string):
        string = wikisafe_markdown(string)
        string = wikify_string(string)
        if len(string.split("</p>")) == 2 and string.split("</p>")[1] == "":
            string = string.replace("<p>", "").replace("</p>", "")

        return string
	def process_string(self,string):
		"""
		Its not generally safe to use markdown on a whole blocktag because the block
		may contain html already and there's no telling how nice it will play.
		"""
		string = wikify_string(string)
		return string
	def process_string(self, string):
		string = wikisafe_markdown(string)
		string = wikify_string(string)
		if len(string.split("</p>")) == 2 and string.split("</p>")[1] == "":
			string = string.replace("<p>","").replace("</p>","")

		return string
def wikilink(value):
	return wikify_string(value)
Exemple #6
0
def wikilink(value):
    return wikify_string(value)