You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

2 years ago
sxml-loader
===========
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
<div align="center">
<img width="100" height="100" alt="Scheme"
src="https://upload.wikimedia.org/wikipedia/commons/3/39/Lambda_lc.svg"/>
<img width="100" height="100" alt="Webpack"
src="https://raw.githubusercontent.com/webpack/media/master/logo/icon-square-small.svg"/>
</div>
Scheme XML loader for webpack.
**NOTE**:
At the moment, the _sxml-loader_ only works with
[Chicken Scheme](http://call-cc.org/) and its
[sxml-serializer](http://wiki.call-cc.org/eggref/5/sxml-serializer)
egg, so you need to install them in order to use the _sxml-loader_.
2 years ago
Usage
-----
**SXML**:
```scm
'(h1 "Hello")
```
**webpack.config.js**:
```js
module.exports = {
module: {
// ...
rules: [
{
test: /\.sxml$/,
use: ['html-loader', 'sxml-loader'],
},
],
// ...
},
}
```
2 years ago
License
-------
GPLv3 or later. See full text in the [COPYING](COPYING) file
or in GNU website: https://www.gnu.org/licenses/gpl-3.0-standalone.html