• 格式化括号

    Parameters

    • src: string

      输入字串

    • tag: string

      格式化标记

    Returns string

    返回括号内容增加 html 标记包裹

    const src = "content (stop fire)";
    const result = formatBracket(src,"message");
    // result: content (<message>stop fire</message>)