• Make an html-like node storing content. The node is a macro and content as well as any attributes can be extracted or further processed. Collisions are avoided with existing macros because all macros are prefixed with html-tag: or html-attribute:, which contain special characters that normal macros cannot have.

    Parameters

    • __namedParameters: {
          attributes?: object;
          content?: Node | Node[];
          tag: string;
      }
      • Optional attributes?: object
      • Optional content?: Node | Node[]
      • tag: string

    Returns Macro

Generated using TypeDoc