Skip to content

Commit 0ef0879

Browse files
committed
doc: ensure nested lists render properly in mkdocs
[skip ci]
1 parent 74679df commit 0ef0879

File tree

3 files changed

+38
-38
lines changed

3 files changed

+38
-38
lines changed

CONTRIBUTING.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -187,25 +187,25 @@ In any case, the general pipeline we use is the same for `main` and for PRs incl
187187
- basic security sanity check: run rubocop
188188
- fast feedback for obvious failures: run against system libraries on vanilla ubuntu
189189
- run on all supported versions of CRuby:
190-
- once with packaged libraries
191-
- once with system libraries
192-
- once on valgrind (to look for memory bugs)
190+
- once with packaged libraries
191+
- once with system libraries
192+
- once on valgrind (to look for memory bugs)
193193
- run on JRuby
194194
- run on a Musl (Alpine) system:
195-
- against system libraries
196-
- with valgrind using packaged libraries
195+
- against system libraries
196+
- with valgrind using packaged libraries
197197
- run with libxml-ruby loaded (because this interacts with libxml2 in conflicting ways)
198-
- against system libraries
199-
- with valgrind using packaged libraries
198+
- against system libraries
199+
- with valgrind using packaged libraries
200200
- build a "ruby" platform gem
201-
- install and test on vanilla ubuntu
202-
- install and test on musl
201+
- install and test on vanilla ubuntu
202+
- install and test on musl
203203
- build a native 64-bit linux gem
204-
- install and test on vanilla ubuntu with all supported versions of CRuby
205-
- install and test on musl
204+
- install and test on vanilla ubuntu with all supported versions of CRuby
205+
- install and test on musl
206206
- build a native 32-bit linux gem
207-
- install and test on vanilla ubuntu
208-
- install and test on musl
207+
- install and test on vanilla ubuntu
208+
- install and test on musl
209209
- build a jruby gem, install and test it
210210

211211
These pipelines are configured in `/concourse/nokogiri.yml` and `nokogiri-pr.yml`. Those files file are ... nontrivial, and I'm sorry about that. See https://github.com/flavorjones/concourse-gem for help.

LICENSE-DEPENDENCIES.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ Note that this document is broken into multiple sections, each of which describe
77
<!-- toc -->
88

99
- [Default platform release ("ruby")](#default-platform-release-ruby)
10-
- [Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")](#native-linux-platform-releases-x86_64-linux-and-arm64-linux)
10+
- [Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")](#native-linux%E2%93%A1-platform-releases-x86_64-linux-and-arm64-linux)
1111
- [Native Darwin (macOSⓇ) platform releases ("x86_64-darwin" and "arm64-darwin")](#native-darwin-macos%E2%93%A1-platform-releases-x86_64-darwin-and-arm64-darwin)
1212
- [Native WindowsⓇ platform releases ("x86-mingw32" and "x64-mingw32")](#native-windows%E2%93%A1-platform-releases-x86-mingw32-and-x64-mingw32)
1313
- [JavaⓇ (JRuby) platform release ("java")](#java%E2%93%A1-jruby-platform-release-java)
1414
- [Appendix: Dependencies' License Texts](#appendix-dependencies-license-texts)
15-
* [libxml2](#libxml2)
16-
* [libxslt](#libxslt)
17-
* [zlib](#zlib)
18-
* [libiconv](#libiconv)
19-
* [isorelax](#isorelax)
20-
* [jing](#jing)
21-
* [nekodtd](#nekodtd)
22-
* [nekohtml](#nekohtml)
23-
* [xalan](#xalan)
24-
* [xerces](#xerces)
25-
* [xml-apis](#xml-apis)
15+
* [libxml2](#libxml2)
16+
* [libxslt](#libxslt)
17+
* [zlib](#zlib)
18+
* [libiconv](#libiconv)
19+
* [isorelax](#isorelax)
20+
* [jing](#jing)
21+
* [nekodtd](#nekodtd)
22+
* [nekohtml](#nekohtml)
23+
* [xalan](#xalan)
24+
* [xerces](#xerces)
25+
* [xml-apis](#xml-apis)
2626

2727
<!-- tocstop -->
2828

ROADMAP.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
Mixing in Enumerable has some unintended consequences; plus we want to improve the attributes API
2121

2222
* Some ideas for a better attributes API?
23-
* (closed) [#666](https://github.com/sparklemotion/nokogiri/issues/666)
24-
* [#765](https://github.com/sparklemotion/nokogiri/issues/765)
23+
* (closed) [#666](https://github.com/sparklemotion/nokogiri/issues/666)
24+
* [#765](https://github.com/sparklemotion/nokogiri/issues/765)
2525

2626

2727
## improve CSS query parsing
@@ -33,11 +33,11 @@
3333
chained :not pseudoselectors
3434

3535
* better jQuery selector and CSS pseudo-selector support:
36-
* [#621](https://github.com/sparklemotion/nokogiri/issues/621)
37-
* [#342](https://github.com/sparklemotion/nokogiri/issues/342)
38-
* [#628](https://github.com/sparklemotion/nokogiri/issues/628)
39-
* [#652](https://github.com/sparklemotion/nokogiri/issues/652)
40-
* [#688](https://github.com/sparklemotion/nokogiri/issues/688)
36+
* [#621](https://github.com/sparklemotion/nokogiri/issues/621)
37+
* [#342](https://github.com/sparklemotion/nokogiri/issues/342)
38+
* [#628](https://github.com/sparklemotion/nokogiri/issues/628)
39+
* [#652](https://github.com/sparklemotion/nokogiri/issues/652)
40+
* [#688](https://github.com/sparklemotion/nokogiri/issues/688)
4141

4242
* [#394](https://github.com/sparklemotion/nokogiri/issues/394)
4343
nth-of-type is wrong, and possibly other selectors as well
@@ -53,10 +53,10 @@
5353

5454
* there are a few tickets about searches not working properly if you
5555
use or do not use the context node as part of the search.
56-
- [#213](https://github.com/sparklemotion/nokogiri/issues/213)
57-
- [#370](https://github.com/sparklemotion/nokogiri/issues/370)
58-
- [#454](https://github.com/sparklemotion/nokogiri/issues/454)
59-
- [#572](https://github.com/sparklemotion/nokogiri/issues/572)
56+
- [#213](https://github.com/sparklemotion/nokogiri/issues/213)
57+
- [#370](https://github.com/sparklemotion/nokogiri/issues/370)
58+
- [#454](https://github.com/sparklemotion/nokogiri/issues/454)
59+
- [#572](https://github.com/sparklemotion/nokogiri/issues/572)
6060
could we fix this by making DocumentFragment be a subclass of NodeSet?
6161

6262

@@ -68,9 +68,9 @@
6868
## Better Syntax around Node#xpath and NodeSet#xpath
6969

7070
* look at those methods, and use of Node#extract_params in Node#{css,search}
71-
* we should standardize on a hash of options for these and other calls
71+
* we should standardize on a hash of options for these and other calls
7272
* what should NodeSet#xpath return?
73-
* [#656](https://github.com/sparklemotion/nokogiri/issues/656)
73+
* [#656](https://github.com/sparklemotion/nokogiri/issues/656)
7474

7575
## Encoding
7676

0 commit comments

Comments
 (0)