tree: 508a2ea31248cf37e474085f99aaeb8094bf587b [path history] [tgz]
  1. blank.txt
  2. docs.dart.js
  3. docs.dart.js.map
  4. favicon.png
  5. github.css
  6. highlight.pack.js
  7. play_button.svg
  8. readme.md
  9. search.svg
  10. styles.css
lib/resources/readme.md

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

  1. Visit https://highlightjs.org/download/
  2. Open the developer console.
  3. Copy the below code block and execute.
  4. Verify that the listed language are selected.
  5. 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);});