Describe ordering requirement for prism script tag (#1935)

I couldn't get a prism typescript language grammar to work until I realised that script order mattered.   

This might not be the best language or format for this, but I think it probably belongs in the documentation in some manner.

Thank you!
This commit is contained in:
Andrew Blakey 2022-12-12 02:07:41 -05:00 committed by GitHub
parent 26013929cc
commit f4cae7ff82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,8 @@ Support for [additional languages](https://prismjs.com/#supported-languages) is
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-php.min.js"></script>
```
!> This `<script>` tag must be placed after the docisfy `<script>` to work.
To enable syntax highlighting, wrap each code block in triple backticks with the [language](https://prismjs.com/#supported-languages) specified on the first line:
````