Dart documentation generator
Dart documentation generator
This directory includes static sources used by the Dart documentation generator
through the dart doc command.
To learn more about generating and viewing the generated documentation,
check out the dart doc documentation.
Third-party resources
highlight.js
License: https://github.com/highlightjs/highlight.js/blob/main/LICENSE
Update
- Visit https://highlightjs.org/download/
- Open the developer console.
- Copy the below code block and execute.
- Verify that the listed language are selected.
- Download and extract assets.
var selected = [
'bash',
'c',
'css',
'dart',
'diff',
'java',
'javascript',
'json',
'kotlin',
'markdown',
'objectivec',
'plaintext',
'shell',
'swift',
'xml', // also includes html
'yaml',
];
document.querySelectorAll('input[type=checkbox]').forEach(function (elem) {elem.checked = selected.includes(elem.value);});