File size: 179 Bytes
6b88892
 
 
 
 
 
1
2
3
4
5
6
from typing import List

def CreateTilInputs(content: List[str]) -> dict:
    separator = "\n* "
    content[0] = "* " + content[0]
    return {"content": separator.join(content)}