UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

43 lines (34 loc) 503 B
/** * TextRenderer * returns only the textual part of the token */ export class TextRenderer { // no need for block level renderers strong(text) { return text; } em(text) { return text; } codespan(text) { return text; } del(text) { return text; } html(text) { return text; } text(text) { return text; } link(href, title, text) { return '' + text; } image(href, title, text) { return '' + text; } br() { return ''; } }