loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix stylesheet HTML snippet for external renderers documentation (#22435)

The documentation is missing the rel attribute. Neither Firefox nor
Chrome did use the linked file as CSS if rel="stylesheet" is not set.

The problem is described in issue #22434.

Co-authored-by: silverwind <me@silverwind.io>

authored by

Sascha Bannier
silverwind
and committed by
GitHub
20e3ffd2 02ae6329

+1 -1
+1 -1
docs/content/doc/advanced/external-renderers.en-us.md
··· 192 192 Add your stylesheet to your custom directory e.g `custom/public/css/my-style-XXXXX.css` and import it using a custom header file `custom/templates/custom/header.tmpl`: 193 193 194 194 ```html 195 - <link type="text/css" href="{{AppSubUrl}}/assets/css/my-style-XXXXX.css" /> 195 + <link rel="stylesheet" href="{{AppSubUrl}}/assets/css/my-style-XXXXX.css" /> 196 196 ```