# yogurt-preprocessor-extlang **Repository Path**: mirrors_fex-team/yogurt-preprocessor-extlang ## Basic Information - **Project Name**: yogurt-preprocessor-extlang - **Description**: An fis preproccessor plugin for parse swig custom tags. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README yogurt-preprocessor-extlang =========================== An fis preproccessor plugin for parse swig custom tags. 支持使用Swig script, style 插件的JavaScript的语言扩展 ```tpl {% script %} require('./a.js'); __inline('./b.js'); var a = __uri('./c.js'); //blabla {% endscript %} {% style %} @import url(./a.css?__inline); {% endstyle %} ``` 使用 ==== ```bash // install npm install -g yogurt-preprocessor-extlang ``` ```bash // config vi /fis-conf.js fis.merge.config({ modules: { preprocessor: { tpl: "extlang" } }, .... }); ```