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

TypeScript html-entities.AllHtmlEntities类代码示例

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

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



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

示例1: addVariable

  function addVariable(variableName, defaultValue, file) {
    const entities = new AllHtmlEntities();
    defaultValue = entities.encode(defaultValue);
    defaultValue = defaultValue.replace('!default;', '');

    variables.push({
      name: variableName,
      defaultValue: defaultValue.trim(),
      file: relative('./', file.path)
    });
  }
开发者ID:ciekawy,项目名称:ionic,代码行数:11,代码来源:docs.ts


示例2:

import * as htmlEntities from "html-entities";
 
let entities = new htmlEntities.AllHtmlEntities();
 
console.log(entities.encode('<>"\'&©®')); // &lt;&gt;&quot;&apos;&amp;©® 
console.log(entities.encodeNonUTF('<>"\'&©®')); // &lt;&gt;&quot;&apos;&amp;&#169;&#174; 
console.log(entities.encodeNonASCII('<>"\'&©®')); // <>"\'&©® 
console.log(entities.decode('&lt;&gt;&quot;&apos;&amp;&copy;&reg;&#8710;')); // <>"'&&copy;&reg;∆
开发者ID:AbraaoAlves,项目名称:DefinitelyTyped,代码行数:8,代码来源:html-entities-tests.ts


示例3: crawl

async function crawl(publicId: string) {
	const $search = await $crawl(`http://weixin.sogou.com/weixin?type=1&query=${publicId}`)
	const url = entities.decode($search('.results > div').attr('href'))
	const response = await fetch(url, wxFetchOptions)
	const text = await response.text()
	const regex = /var msgList = '(.+?)';/
	const matches = text.match(regex)
	if (matches) {
		const data = JSON.parse(entities.decode(entities.decode(matches[1])))
		const articles = data.list.map(({app_msg_ext_info}) => {
			const {author, content_url, title} = app_msg_ext_info
			return {author, url: `https://mp.weixin.qq.com${content_url.replace(/\\\//g, '/')}`, title}
		})
		console.log(articles)
		for (let i = 0; i < articles.length; i++) {
			const {url} = articles[i]
			const $detailPage = await $crawl(url)

			$detailPage('#js_content img').each((index, element) => {
				const $element = $detailPage(element)
				const style = $element.attr('style')
				$element.replaceWith(`<img src='${$element.attr('data-src')}'${style ? ` style='${style}'` : ''}/>`)
			})

			const $content = $detailPage('#js_content')
			console.log($content.html())
			break
		}
	} else {
		console.log('not matched')
	}
}
开发者ID:winguse,项目名称:wx-public-account-to-atom-feed,代码行数:32,代码来源:app.ts


示例4:

 result.answers.forEach((ans) => {
     ans.score /= 100;
     ans.answer = htmlentities.decode(ans.answer);
     var answerEntity = {
         score: ans.score,
         entity: ans.answer,
         type: 'answer'
     }
     answerEntities.push(answerEntity as builder.IEntity);
 });
开发者ID:jpancorb,项目名称:BotBuilder-CognitiveServices,代码行数:10,代码来源:QnAMakerRecognizer.ts


示例5: code

 code(code: string, lang: string, escaped?: boolean) {
   if (escaped) {
     code = entities.decode(code);
   }
   // These three lines are the reason for this entire file!
   // Here we automatically detect the language for the given code snippet
   // and inject it into the output markdown.
   if (!lang) {
     lang = inferLanguage(code);
   }
   return `\`\`\`${lang}\n${code}\n\`\`\`\n\n`;
 }
开发者ID:TimvdLippe,项目名称:tedium,代码行数:12,代码来源:markdown-lang-autodetect.ts


示例6: or

	client.fetch(url.href).then((result: any) => {
		if (result.error !== undefined && result.error !== null) {
			return res.sendStatus(204);
		}

		const contentType: string = result.response.headers['content-type'];

		// HTMLじゃなかった場合は中止
		if (contentType.indexOf('text/html') === -1) {
			return res.sendStatus(204);
		}

		const $: any = result.$;

		let title = or(
			$('meta[property="misskey:title"]').attr('content'),
			$('meta[property="og:title"]').attr('content'),
			$('meta[property="twitter:title"]').attr('content'),
			$('title').text());
		if (title === null) {
			return res.sendStatus(204);
		}
		title = clip(entities.decode(title), 100);

		const lang: string = $('html').attr('lang');

		const type = or(
			$('meta[property="misskey:type"]').attr('content'),
			$('meta[property="og:type"]').attr('content'));

		let image = or(
			$('meta[property="misskey:image"]').attr('content'),
			$('meta[property="og:image"]').attr('content'),
			$('meta[property="twitter:image"]').attr('content'),
			$('link[rel="image_src"]').attr('href'),
			$('link[rel="apple-touch-icon"]').attr('href'),
			$('link[rel="apple-touch-icon image_src"]').attr('href'));
		image = image !== null ? wrapMisskeyProxy(URL.resolve(url.href, image)) : null;

		let description = or(
			$('meta[property="misskey:summary"]').attr('content'),
			$('meta[property="og:description"]').attr('content'),
			$('meta[property="twitter:description"]').attr('content'),
			$('meta[name="description"]').attr('content'));
		description = description !== null
			? clip(entities.decode(description), 300)
			: null;

		if (title === description) {
			description = null;
		}

		let siteName = or(
			$('meta[property="misskey:site-name"]').attr('content'),
			$('meta[property="og:site_name"]').attr('content'),
			$('meta[name="application-name"]').attr('content'));
		siteName = siteName !== null ? entities.decode(siteName) : null;

		let icon = or(
			$('meta[property="misskey:site-icon"]').attr('content'),
			$('link[rel="shortcut icon"]').attr('href'),
			$('link[rel="icon"]').attr('href'),
			'/favicon.ico');
		icon = icon !== null ? wrapMisskeyProxy(URL.resolve(url.href, icon)) : null;

		const compiler: (locals: any) => string = jade.compileFile(
			`${__dirname}/summary.jade`);

		// コンパイル
		const viewer: string = compiler({
			url: url,
			title: title,
			icon: icon,
			lang: lang,
			description: description,
			type: type,
			image: image,
			siteName: siteName
		});

		res.send(viewer);
	}, (err: any) => {
开发者ID:armchair-philosophy,项目名称:Misskey-Web,代码行数:82,代码来源:analyze.ts


示例7: text

 text(text: string) {
   return entities.decode(text);
 }
开发者ID:TimvdLippe,项目名称:tedium,代码行数:3,代码来源:markdown-lang-autodetect.ts


示例8: codespan

 codespan(text: string) {
   return `\`${entities.decode(text)}\``;
 }
开发者ID:TimvdLippe,项目名称:tedium,代码行数:3,代码来源:markdown-lang-autodetect.ts



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
TypeScript html-minifier.minify函数代码示例发布时间:2022-05-25
下一篇:
TypeScript html.prettyPrint函数代码示例发布时间: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