/// Parses the given inline Markdown [text] to a series of AST nodes. List <Node> parseInline(string text) { try { var parser = new InlineParser(text, this); var nodes = parser.parse(); return(nodes); } catch (Exception e) { Debug.LogError(e); } return(null); }
public List <Node> parseInline(string text) { var parser = new InlineParser(text, this); return(parser.parse()); }