当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ansi_up.ansi_to_html函数代码示例

本文整理汇总了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;未经允许,请勿转载。