@uniweb/content-reader 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/parser/inline.js +2 -2
package/package.json
CHANGED
package/src/parser/inline.js
CHANGED
|
@@ -155,11 +155,11 @@ function parseInline(token, schema, removeNewLine = false) {
|
|
|
155
155
|
const ICON_FAMILIES_FRIENDLY = [
|
|
156
156
|
'lucide', 'heroicons', 'heroicons2', 'phosphor', 'tabler', 'feather',
|
|
157
157
|
'fa', 'fa6', 'bootstrap', 'material-design', 'ant-design', 'remix',
|
|
158
|
-
'simple-icons', 'vscode', 'weather', 'game'
|
|
158
|
+
'simple-icons', 'ionicons', 'boxicons', 'vscode', 'weather', 'game'
|
|
159
159
|
];
|
|
160
160
|
const ICON_FAMILIES_SHORT = [
|
|
161
161
|
'lu', 'hi', 'hi2', 'pi', 'tb', 'fi', 'bs', 'md', 'ai',
|
|
162
|
-
'ri', 'si', 'vsc', 'wi', 'gi', 'fa', 'fa6'
|
|
162
|
+
'ri', 'si', 'io5', 'bi', 'vsc', 'wi', 'gi', 'fa', 'fa6'
|
|
163
163
|
];
|
|
164
164
|
const allFamilies = [...ICON_FAMILIES_FRIENDLY, ...ICON_FAMILIES_SHORT];
|
|
165
165
|
const iconFamilyPattern = allFamilies.join('|');
|