MCPcopy Index your code
hub / github.com/codeaashu/claude-code / flushNonTableContent

Function flushNonTableContent

src/components/Markdown.tsx:137–142  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

135 elements = [];
136 let nonTableContent = "";
137 const flushNonTableContent = function flushNonTableContent() {
138 if (nonTableContent) {
139 elements.push(<Ansi key={elements.length} dimColor={dimColor}>{nonTableContent.trim()}</Ansi>);
140 nonTableContent = "";
141 }
142 };
143 for (const token of tokens) {
144 if (token.type === "table") {
145 flushNonTableContent();

Callers 1

MarkdownBodyFunction · 0.85

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected