本文整理汇总了TypeScript中@phosphor/virtualdom.h.br方法的典型用法代码示例。如果您正苦于以下问题:TypeScript h.br方法的具体用法?TypeScript h.br怎么用?TypeScript h.br使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@phosphor/virtualdom.h
的用法示例。
在下文中一共展示了h.br方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: doBuild
builder.getStatus().then(response => {
if (response.status === 'building') {
return doBuild();
}
if (response.status !== 'needed') {
return;
}
let body = h.div(
h.p(
'JupyterLab build is suggested:',
h.br(),
h.pre(response.message)
)
);
showDialog({
title: 'Build Recommended',
body,
buttons: [Dialog.cancelButton(), Dialog.okButton({ label: 'BUILD' })]
}).then(result => {
if (result.button.accept) {
return doBuild();
}
});
});
示例2:
} from '@phosphor/virtualdom';
import {
INotebookModel
} from './model';
import {
Notebook
} from './widget';
// The message to display to the user when prompting to trust the notebook.
const TRUST_MESSAGE = h.p(
'A trusted Jupyter notebook may execute hidden malicious code when you ',
'open it.',
h.br(),
'Selecting trust will re-render this notebook in a trusted state.',
h.br(),
'For more information, see the',
h.a({ href: 'https://jupyter-notebook.readthedocs.io/en/stable/security.html' },
'Jupyter security documentation'),
);
/**
* The mimetype used for Jupyter cell data.
*/
const JUPYTER_CELL_MIME = 'application/vnd.jupyter.cells';
/**
示例3: it
it('should create the appropriate element tag', () => {
expect(h.a().tag).to.equal('a');
expect(h.abbr().tag).to.equal('abbr');
expect(h.address().tag).to.equal('address');
expect(h.area().tag).to.equal('area');
expect(h.article().tag).to.equal('article');
expect(h.aside().tag).to.equal('aside');
expect(h.audio().tag).to.equal('audio');
expect(h.b().tag).to.equal('b');
expect(h.bdi().tag).to.equal('bdi');
expect(h.bdo().tag).to.equal('bdo');
expect(h.blockquote().tag).to.equal('blockquote');
expect(h.br().tag).to.equal('br');
expect(h.button().tag).to.equal('button');
expect(h.canvas().tag).to.equal('canvas');
expect(h.caption().tag).to.equal('caption');
expect(h.cite().tag).to.equal('cite');
expect(h.code().tag).to.equal('code');
expect(h.col().tag).to.equal('col');
expect(h.colgroup().tag).to.equal('colgroup');
expect(h.data().tag).to.equal('data');
expect(h.datalist().tag).to.equal('datalist');
expect(h.dd().tag).to.equal('dd');
expect(h.del().tag).to.equal('del');
expect(h.dfn().tag).to.equal('dfn');
expect(h.div().tag).to.equal('div');
expect(h.dl().tag).to.equal('dl');
expect(h.dt().tag).to.equal('dt');
expect(h.em().tag).to.equal('em');
expect(h.embed().tag).to.equal('embed');
expect(h.fieldset().tag).to.equal('fieldset');
expect(h.figcaption().tag).to.equal('figcaption');
expect(h.figure().tag).to.equal('figure');
expect(h.footer().tag).to.equal('footer');
expect(h.form().tag).to.equal('form');
expect(h.h1().tag).to.equal('h1');
expect(h.h2().tag).to.equal('h2');
expect(h.h3().tag).to.equal('h3');
expect(h.h4().tag).to.equal('h4');
expect(h.h5().tag).to.equal('h5');
expect(h.h6().tag).to.equal('h6');
expect(h.header().tag).to.equal('header');
expect(h.hr().tag).to.equal('hr');
expect(h.i().tag).to.equal('i');
expect(h.iframe().tag).to.equal('iframe');
expect(h.img().tag).to.equal('img');
expect(h.input().tag).to.equal('input');
expect(h.ins().tag).to.equal('ins');
expect(h.kbd().tag).to.equal('kbd');
expect(h.label().tag).to.equal('label');
expect(h.legend().tag).to.equal('legend');
expect(h.li().tag).to.equal('li');
expect(h.main().tag).to.equal('main');
expect(h.map().tag).to.equal('map');
expect(h.mark().tag).to.equal('mark');
expect(h.meter().tag).to.equal('meter');
expect(h.nav().tag).to.equal('nav');
expect(h.noscript().tag).to.equal('noscript');
expect(h.object().tag).to.equal('object');
expect(h.ol().tag).to.equal('ol');
expect(h.optgroup().tag).to.equal('optgroup');
expect(h.option().tag).to.equal('option');
expect(h.output().tag).to.equal('output');
expect(h.p().tag).to.equal('p');
expect(h.param().tag).to.equal('param');
expect(h.pre().tag).to.equal('pre');
expect(h.progress().tag).to.equal('progress');
expect(h.q().tag).to.equal('q');
expect(h.rp().tag).to.equal('rp');
expect(h.rt().tag).to.equal('rt');
expect(h.ruby().tag).to.equal('ruby');
expect(h.s().tag).to.equal('s');
expect(h.samp().tag).to.equal('samp');
expect(h.section().tag).to.equal('section');
expect(h.select().tag).to.equal('select');
expect(h.small().tag).to.equal('small');
expect(h.source().tag).to.equal('source');
expect(h.span().tag).to.equal('span');
expect(h.strong().tag).to.equal('strong');
expect(h.sub().tag).to.equal('sub');
expect(h.summary().tag).to.equal('summary');
expect(h.sup().tag).to.equal('sup');
expect(h.table().tag).to.equal('table');
expect(h.tbody().tag).to.equal('tbody');
expect(h.td().tag).to.equal('td');
expect(h.textarea().tag).to.equal('textarea');
expect(h.tfoot().tag).to.equal('tfoot');
expect(h.th().tag).to.equal('th');
expect(h.thead().tag).to.equal('thead');
expect(h.time().tag).to.equal('time');
expect(h.title().tag).to.equal('title');
expect(h.tr().tag).to.equal('tr');
expect(h.track().tag).to.equal('track');
expect(h.u().tag).to.equal('u');
expect(h.ul().tag).to.equal('ul');
expect(h.var_().tag).to.equal('var');
expect(h.video().tag).to.equal('video');
expect(h.wbr().tag).to.equal('wbr');
});