當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript autolinker.link函數代碼示例

本文整理匯總了TypeScript中autolinker.link函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript link函數的具體用法?TypeScript link怎麽用?TypeScript link使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了link函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: linkify

function linkify(text: string, options: LinkifyOptions): string {
    const autolinker = new Autolinker({
        urls: {
            schemeMatches: true,
            wwwMatches: true,
            tldMatches: true
        },
        email: true,
        phone: true,
        hashtag: false,

        stripPrefix: true,
        newWindow: true,

        truncate: {
            length: 60,
            location: "end"
        },

        className: ""
    });

    const res = autolinker.link(text);
    if (options && options.skipMediaLinks) {
        return res;
    }
    try {
        return links.processMediaLinks(res);
    } catch (err) {
        log.error(err);
        return res;
    }
}
開發者ID:pesennik,項目名稱:js,代碼行數:33,代碼來源:site-utils.ts

示例2: it

	it( `Autolinker should be the default export of 'autolinker'`, () => {
		expect( Autolinker ).toEqual( jasmine.any( Function ) );  // constructor function
		expect( Autolinker.link ).toEqual( jasmine.any( Function ) );

		expect( Autolinker.link( 'Hello google.com', { newWindow: false } ) )
			.toBe( 'Hello <a href="http://google.com">google.com</a>' );
	} );
開發者ID:gregjacobs,項目名稱:Autolinker.js,代碼行數:7,代碼來源:test-imports.spec.ts

示例3:

document.addEventListener( 'DOMContentLoaded', () => {
	var resultEl = document.getElementById( 'result' )!;
	
	var options: AutolinkerConfig = { newWindow: false };  // Note: Testing that the AutolinkerConfig interface can be imported
	var linkedStr = Autolinker.link( 'Go to google.com', options );
	resultEl.innerHTML = linkedStr;
} );
開發者ID:gregjacobs,項目名稱:Autolinker.js,代碼行數:7,代碼來源:page.ts

示例4: transform

 transform(html: string): string {
   return Autolinker.link(html, {
     replaceFn(autolinker, match) {
       const tag = match.buildTag();
       tag.setAttr('target', '_system');
       return tag;
     }
   });
 }
開發者ID:Charl---,項目名稱:ionic-wordpress-starter,代碼行數:9,代碼來源:linky.ts

示例5: transform

 transform(value:string, args?: any[]): string {
   let options = args !== undefined ? args[0] : null;
   return Autolinker.link(value, options);
 }
開發者ID:martijnpieters,項目名稱:angular2-linky,代碼行數:4,代碼來源:linky-pipe.ts

示例6: it

	it( 'should run using the AutolinkerConfig interface import', () => {
		var options: AutolinkerConfig = { newWindow: false };  // Note: Testing that the AutolinkerConfig interface can be imported
		var linkedStr = Autolinker.link( 'Go to google.com', options );

		expect( linkedStr ).toBe( `Go to <a href="http://google.com">google.com</a>` );
	} );
開發者ID:gregjacobs,項目名稱:Autolinker.js,代碼行數:6,代碼來源:test-node-typescript.spec.ts

示例7: transform

 transform(value: string, options?: any): string {
   return Autolinker.link(value, options);
 }
開發者ID:dzonatan,項目名稱:angular2-linky,代碼行數:3,代碼來源:linky.pipe.ts

示例8: transform

 transform(value: any, args?: any): any {
     return Autolinker.link(value, args);
 }
開發者ID:urakozz,項目名稱:js-backoffice,代碼行數:3,代碼來源:linkly.pipe.ts


注:本文中的autolinker.link函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。