yinaai
Version:
--- # Features ## 1. Pre label beautification ### Use in the website```<pre>az</pre>```You can see the beautification effect ## 2. Code label beautification ### Use in the website```<code>az</code>```You can see the beautification effect ## Web page
15 lines (13 loc) • 504 B
JavaScript
// Not IE
var link = document.getElementsByTagName('head')[0],
cssURL = 'https://cdn.jsdelivr.net/npm/yinaai/yinaai.min.css',
linkTag = document.createElement('link');
linkTag.id = 'Yinaai-style';
linkTag.href = cssURL;
linkTag.setAttribute('rel','stylesheet');
linkTag.setAttribute('media','all');
linkTag.setAttribute('type','text/css');
link.appendChild(linkTag);
// IE
cssUrl = 'https://cdn.jsdelivr.net/npm/yinaai/yinaai.min.css',
document.createStyleSheet(cssURL);