5 lines
111 B
Python
5 lines
111 B
Python
from .bbcode import PARSER as BBCODE_PARSER
|
|
|
|
def parse_bbcode(text:str):
|
|
return BBCODE_PARSER.format(text)
|