docs(README): remove type from script tags

This commit is contained in:
Marcos Cáceres 2019-07-09 13:16:32 +10:00
parent 68e385c4d5
commit 01f43f4ca0

View file

@ -11,16 +11,16 @@ Simply include the `highlight.js` script package in your webpage or node app, lo
If you're not using a build system and just want to embed this in your webpage:
```html
<script type="text/javascript" src="/path/to/highlight.pack.js"></script>
<script type="text/javascript" src="/path/to/highlightjs-rpm-specfile/rpm-specfile.js"></script>
<script type="text/javascript">
hljs.registerLanguage('rpm-specfile', window.hljsDefineRpmSpecfile);
hljs.initHighlightingOnLoad();
<script src="/path/to/highlight.pack.js"></script>
<script src="/path/to/highlightjs-rpm-specfile/rpm-specfile.js"></script>
<script>
hljs.registerLanguage('rpm-specfile', window.hljsDefineRpmSpecfile);
hljs.initHighlightingOnLoad();
</script>
```
If you're using webpack / rollup / browserify / node:
```javascript
var hljs = require('highlightjs');
var hljsDefineRpmSpecfile = require('highlightjs-rpm-specfile');