Home | History | Annotate | Download | only in markdown

Lines Matching refs:replace

126             text = text.replace("&", "&")
128 text = text.replace("<", "&lt;")
130 text = text.replace(">", "&gt;")
140 text = text.replace("&", "&amp;")
142 text = text.replace("<", "&lt;")
144 text = text.replace(">", "&gt;")
146 text = text.replace("\"", "&quot;")
148 text = text.replace("\n", "&#10;")
157 text = text.replace("&", "&amp;")
159 text = text.replace("<", "&lt;")
161 text = text.replace(">", "&gt;")
163 text = text.replace("\"", "&quot;")