• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript ansi_up.ansi_to_html函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中ansi_up.ansi_to_html函数的典型用法代码示例。如果您正苦于以下问题:TypeScript ansi_to_html函数的具体用法?TypeScript ansi_to_html怎么用?TypeScript ansi_to_html使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了ansi_to_html函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: renderText

function renderText(options: renderText.IRenderOptions): Promise<void> {
  // Unpack the options.
  let { host, source } = options;

  // Escape the terminal codes and HTML tags.
  let data = escape_for_html(source);

  // Create the HTML content.
  let content = ansi_to_html(data, { use_classes: true });

  // Set the inner HTML for the host node.
  host.innerHTML = `<pre>${content}</pre>`;

  // Return the rendered promise.
  return Promise.resolve(undefined);
}
开发者ID:cameronoelsen,项目名称:jupyterlab,代码行数:16,代码来源:renderers.ts


示例2: escapeTerminalOutput

// prepare raw data for passing to jQuery.terminal's .echo method
function escapeTerminalOutput(text) {
    // term.echo will always append newline (which, by the way, really
    // messes up commands that write lines to stdout in multiple chunks,
    // see https://github.com/hraban/lush/issues/67) so strip one off
    // the end of the output if there already is one.
    if (U.hassuffix(text, '\r\n')) {
        text = text.slice(0, -2);
    } else if (U.hassuffix(text, '\n')) {
        text = text.slice(0, -1);
    }
    text = U.escapeHTML(text);
    text = ansi_up.ansi_to_html(text);
    // jquery.terminal interprets square brackets in a weird way
    text = text.replace(/\[/g, '&#91;');
    return text;
}
开发者ID:hraban,项目名称:lush,代码行数:17,代码来源:terminal_jquery.ts


示例3: renderText

export function renderText(options: renderText.IRenderOptions): Promise<void> {
  // Unpack the options.
  let { host, source } = options;

  const ansiUp = new AnsiUp();
  ansiUp.escape_for_html = true;
  ansiUp.use_classes = true;

  // Create the HTML content.
  let content = ansiUp.ansi_to_html(source);

  // Set the inner HTML for the host node.
  host.innerHTML = `<pre>${content}</pre>`;

  // Return the rendered promise.
  return Promise.resolve(undefined);
}
开发者ID:SylvainCorlay,项目名称:jupyterlab,代码行数:17,代码来源:renderers.ts


示例4: appendToBuildLog

function appendToBuildLog(build, text) {
    return {
        type: APPEND_TO_BUILD_LOG,
        payload: { buildId: build.id, text: ansiToHtml(text) }
    };
}
开发者ID:MikeTLive,项目名称:habitat,代码行数:6,代码来源:projects.ts


示例5: populateBuildLog

export function populateBuildLog(id, data) {
    return {
        type: POPULATE_BUILD_LOG,
        payload: { id, data: data ? ansiToHtml(data) : undefined },
    };
}
开发者ID:MikeTLive,项目名称:habitat,代码行数:6,代码来源:projects.ts



注:本文中的ansi_up.ansi_to_html函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript antd.message类代码示例发布时间:2022-05-25
下一篇:
TypeScript ansi-escapes.cursorUp函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap