@@ -434,48 +434,48 @@ interface String {
434
434
startsWith ( searchString : string , position ?: number ) : boolean ;
435
435
436
436
/**
437
- * Returns an <a> HTML anchor element and sets the name attribute to the text value
437
+ * Returns an ` <a>` HTML anchor element and sets the name attribute to the text value
438
438
* @param name
439
439
*/
440
440
anchor ( name : string ) : string ;
441
441
442
- /** Returns a <big> HTML element */
442
+ /** Returns a ` <big>` HTML element */
443
443
big ( ) : string ;
444
444
445
- /** Returns a <blink> HTML element */
445
+ /** Returns a ` <blink>` HTML element */
446
446
blink ( ) : string ;
447
447
448
- /** Returns a <b> HTML element */
448
+ /** Returns a ` <b>` HTML element */
449
449
bold ( ) : string ;
450
450
451
- /** Returns a <tt> HTML element */
451
+ /** Returns a ` <tt>` HTML element */
452
452
fixed ( ) : string ;
453
453
454
- /** Returns a <font> HTML element and sets the color attribute value */
454
+ /** Returns a ` <font>` HTML element and sets the color attribute value */
455
455
fontcolor ( color : string ) : string ;
456
456
457
- /** Returns a <font> HTML element and sets the size attribute value */
457
+ /** Returns a ` <font>` HTML element and sets the size attribute value */
458
458
fontsize ( size : number ) : string ;
459
459
460
- /** Returns a <font> HTML element and sets the size attribute value */
460
+ /** Returns a ` <font>` HTML element and sets the size attribute value */
461
461
fontsize ( size : string ) : string ;
462
462
463
- /** Returns an <i> HTML element */
463
+ /** Returns an ` <i>` HTML element */
464
464
italics ( ) : string ;
465
465
466
- /** Returns an <a> HTML element and sets the href attribute value */
466
+ /** Returns an ` <a>` HTML element and sets the href attribute value */
467
467
link ( url : string ) : string ;
468
468
469
- /** Returns a <small> HTML element */
469
+ /** Returns a ` <small>` HTML element */
470
470
small ( ) : string ;
471
471
472
- /** Returns a <strike> HTML element */
472
+ /** Returns a ` <strike>` HTML element */
473
473
strike ( ) : string ;
474
474
475
- /** Returns a <sub> HTML element */
475
+ /** Returns a ` <sub>` HTML element */
476
476
sub ( ) : string ;
477
477
478
- /** Returns a <sup> HTML element */
478
+ /** Returns a ` <sup>` HTML element */
479
479
sup ( ) : string ;
480
480
}
481
481
0 commit comments