takco.linkedstring module

class takco.linkedstring.LinkedString(value, links=None)[source]

Bases: str

join(seq)[source]

Concatenate any number of strings.

The string whose method is called is inserted in between each given string. The result is returned as a new string.

Example: ‘.’.join([‘ab’, ‘pq’, ‘rs’]) -> ‘ab.pq.rs’

property text
to_html()[source]