Skip to content

Commit 0a65e64

Browse files
committed
update README.md
1 parent 6fe4ef8 commit 0a65e64

1 file changed

Lines changed: 27 additions & 1 deletion

File tree

README.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,36 @@ or [for Pivot as piece of config+software](https://matrix.to/#/#solid_pivot:matr
2626

2727
### - CSS >= 7.1.9
2828
CSS >= 7.1.9 implements folder expansion from root in StaticAssets. Please replace the mashlib StaticAssets entries in your configuration file with the mashlib StaticAssets entries from `config/customise-me.json`
29+
````json
30+
{
31+
"comment": "Serve Mashlib static files from /dist/ folder.",
32+
"@id": "urn:solid-server:default:StaticAssetHandler",
33+
"@type": "StaticAssetHandler",
34+
"assets": [
35+
{
36+
"@type": "StaticAssetEntry",
37+
"relativeUrl": "/",
38+
"filePath": "./node_modules/mashlib/dist/"
39+
}
40+
]
41+
}
42+
```
2943
### - mashlib >= v2.0.0
3044

31-
As from mashlib v2 the config/customise-me.json contains new parameters to :
45+
As from mashlib v2 the `config/customise-me.json` contains new parameters to :
3246
- remove CSS default `Markdown to Html converter`
47+
```json
48+
{
49+
"comment": "Remove the Markdown to HTML converter from the default chained converter",
50+
"@type": "Override",
51+
"overrideInstance": { "@id": "urn:solid-server:default:ChainedConverter" },
52+
"overrideSteps": [{
53+
"@type": "OverrideListRemove",
54+
"overrideParameter": { "@id": "ChainedConverter:_converters" },
55+
"overrideTarget": { "@id": "urn:solid-server:default:MarkdownToHtmlConverter" }
56+
}]
57+
}
58+
```
3359
- ~~include `mashlib chunks` in the static assets entries~~
3460

3561
### - removal of css-mashlib dependency

0 commit comments

Comments
 (0)