@antv/t8
Version:
T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative T8 markdown syntax that can be used to describe the content of data interpretation reports.
19 lines (15 loc) • 411 B
JavaScript
;
var styledFactory = require('./utils/styledFactory.js');
var Bold = styledFactory.createStyledComponent({
element: 'strong',
});
var Italic = styledFactory.createStyledComponent({
element: 'em',
});
var Underline = styledFactory.createStyledComponent({
element: 'u',
});
exports.Bold = Bold;
exports.Italic = Italic;
exports.Underline = Underline;
//# sourceMappingURL=marks.js.map