diff options
| author | Joshua Nelson <jyn514@gmail.com> | 2021-02-04 18:10:33 -0500 |
|---|---|---|
| committer | Joshua Nelson <jyn514@gmail.com> | 2021-02-06 00:08:21 -0500 |
| commit | 9653b601b2c5ac554e6adedf98d2ac173eb61985 (patch) | |
| tree | 187b5658bafe8011801bd91a90113f90b5a7137c /src/test/rustdoc | |
| parent | 822ebfd2c43fbe466da8ae34ffe3ce6cba2e8336 (diff) | |
| download | rust-9653b601b2c5ac554e6adedf98d2ac173eb61985.tar.gz rust-9653b601b2c5ac554e6adedf98d2ac173eb61985.zip | |
Enable 'task list' markdown extension
- Add documentation about task lists
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/task-lists.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/rustdoc/task-lists.rs b/src/test/rustdoc/task-lists.rs new file mode 100644 index 00000000000..c2e7dd60f22 --- /dev/null +++ b/src/test/rustdoc/task-lists.rs @@ -0,0 +1,13 @@ +// ignore-tidy-linelength +// FIXME: this doesn't test as much as I'd like; ideally it would have these query too: + // has task_lists/index.html '//li/input[@type="checkbox" and disabled]/following-sibling::text()' 'a' + // has task_lists/index.html '//li/input[@type="checkbox"]/following-sibling::text()' 'b' +// Unfortunately that requires LXML, because the built-in xml module doesn't support all of xpath. + +// @has task_lists/index.html '//ul/li/input[@type="checkbox"]' '' +// @has task_lists/index.html '//ul/li/input[@disabled]' '' +// @has task_lists/index.html '//ul/li' 'a' +// @has task_lists/index.html '//ul/li' 'b' +//! This tests 'task list' support, a common markdown extension. +//! - [ ] a +//! - [x] b |
