Converts a lightweight notation string to HTML, supporting bold, italic, and line breaks.
Registered as a process-text handler.
| Parameter | Description |
|---|---|
Param1 |
Input string using notation tokens |
| Token | Output |
|---|---|
* |
Toggles <b> / </b> |
_ |
Toggles <i> / </i> |
/n |
Inserts <br> |
Example: "*hello* _world_" → "<b>hello</b> <i>world</i>"
NOTE:
/nis matched as the two-character string/n, not a newline character\n.<>
Returns the transformed HTML string.
ObjProcessText(ObjData.ObjData) — inherits database and config access from ObjData.
cythonize -3 -a -i ObjTextNotation.py
Updated : 2025-10-02