Searched refs:wrap_limit (Results 1 – 1 of 1) sorted by relevance
524 def make_wrappable(html, wrap_limit=60, argument528 if len(html) <= wrap_limit:534 while len(word) > wrap_limit:542 for i in range(0, len(word), wrap_limit):543 wrapped_word += word[i:i+wrap_limit]+'<wbr>'549 def make_pre_wrappable(html, wrap_limit=60, argument558 if len(line) > wrap_limit: