icons.js 486 B

1
  1. (() => { 'use strict'; const c = c => { try { return `<i class="fa fa-${c.replace(/[\{\}]/gi, '').replace(/fa\s/gi, '').trim()}"></i>` } catch (n) { return console.log(n), c } }; window.$docsify = window.$docsify || {}, window.$docsify.plugins = (window.$docsify.plugins || []).concat(function (n) { const i = /\{\{fa\s.+\}\}/gm; n.beforeEach(n => n.replace(i, function (n, i) { return c(n) })), n.afterEach(function (n, o) { o(n.replace(i, function (n, i) { return c(n) })) }) }) })()