Skip to content

[Docs] order anchor-list output explicitly. #4894

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/aggregations.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ The values are typically extracted from the fields of the document (using the fi

* <<sum-aggregation-usage,Sum Aggregation Usage>>

* <<t-test-aggregation-usage,T Test Aggregation Usage>>

* <<top-hits-aggregation-usage,Top Hits Aggregation Usage>>

* <<top-metrics-aggregation-usage,Top Metrics Aggregation Usage>>

* <<t-test-aggregation-usage,T Test Aggregation Usage>>

* <<value-count-aggregation-usage,Value Count Aggregation Usage>>

* <<weighted-average-aggregation-usage,Weighted Average Aggregation Usage>>
Expand Down Expand Up @@ -108,12 +108,12 @@ include::aggregations/metric/string-stats/string-stats-aggregation-usage.asciido

include::aggregations/metric/sum/sum-aggregation-usage.asciidoc[]

include::aggregations/metric/t-test/t-test-aggregation-usage.asciidoc[]

include::aggregations/metric/top-hits/top-hits-aggregation-usage.asciidoc[]

include::aggregations/metric/top-metrics/top-metrics-aggregation-usage.asciidoc[]

include::aggregations/metric/t-test/t-test-aggregation-usage.asciidoc[]

include::aggregations/metric/value-count/value-count-aggregation-usage.asciidoc[]

include::aggregations/metric/weighted-average/weighted-average-aggregation-usage.asciidoc[]
Expand Down
28 changes: 14 additions & 14 deletions docs/query-dsl.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ NEST exposes all of the full text queries available in Elasticsearch

* <<intervals-usage,Intervals Usage>>

* <<match-usage,Match Usage>>

* <<match-bool-prefix-usage,Match Bool Prefix Usage>>

* <<match-phrase-prefix-usage,Match Phrase Prefix Usage>>

* <<match-phrase-usage,Match Phrase Usage>>

* <<match-phrase-prefix-usage,Match Phrase Prefix Usage>>
* <<match-usage,Match Usage>>

* <<multi-match-usage,Multi Match Usage>>

Expand All @@ -71,13 +71,13 @@ include::query-dsl/full-text/common-terms/common-terms-usage.asciidoc[]

include::query-dsl/full-text/intervals/intervals-usage.asciidoc[]

include::query-dsl/full-text/match/match-usage.asciidoc[]

include::query-dsl/full-text/match-bool-prefix/match-bool-prefix-usage.asciidoc[]

include::query-dsl/full-text/match-phrase-prefix/match-phrase-prefix-usage.asciidoc[]

include::query-dsl/full-text/match-phrase/match-phrase-usage.asciidoc[]

include::query-dsl/full-text/match-phrase-prefix/match-phrase-prefix-usage.asciidoc[]
include::query-dsl/full-text/match/match-usage.asciidoc[]

include::query-dsl/full-text/multi-match/multi-match-usage.asciidoc[]

Expand Down Expand Up @@ -122,14 +122,14 @@ NEST exposes all of the term queries available in Elasticsearch

* <<term-query-usage,Term Query Usage>>

* <<terms-set-query-usage,Terms Set Query Usage>>

* <<terms-list-query-usage,Terms List Query Usage>>

* <<terms-lookup-query-usage,Terms Lookup Query Usage>>

* <<terms-query-usage,Terms Query Usage>>

* <<terms-set-query-usage,Terms Set Query Usage>>

* <<wildcard-query-usage,Wildcard Query Usage>>

See the Elasticsearch documentation on {ref_current}/term-level-queries.html[Term level queries] for more details.
Expand Down Expand Up @@ -160,14 +160,14 @@ include::query-dsl/term-level/regexp/regexp-query-usage.asciidoc[]

include::query-dsl/term-level/term/term-query-usage.asciidoc[]

include::query-dsl/term-level/terms-set/terms-set-query-usage.asciidoc[]

include::query-dsl/term-level/terms/terms-list-query-usage.asciidoc[]

include::query-dsl/term-level/terms/terms-lookup-query-usage.asciidoc[]

include::query-dsl/term-level/terms/terms-query-usage.asciidoc[]

include::query-dsl/term-level/terms-set/terms-set-query-usage.asciidoc[]

include::query-dsl/term-level/wildcard/wildcard-query-usage.asciidoc[]

[[compound-queries]]
Expand Down Expand Up @@ -283,10 +283,10 @@ Specialized types of queries that do not fit into other groups

* <<rank-feature-query-usage,Rank Feature Query Usage>>

* <<script-query-usage,Script Query Usage>>

* <<script-score-query-usage,Script Score Query Usage>>

* <<script-query-usage,Script Query Usage>>

* <<shape-query-usage,Shape Query Usage>>

See the Elasticsearch documentation on {ref_current}/specialized-queries.html[Specialized queries] for more details.
Expand All @@ -305,10 +305,10 @@ include::query-dsl/specialized/pinned/pinned-query-usage.asciidoc[]

include::query-dsl/specialized/rank-feature/rank-feature-query-usage.asciidoc[]

include::query-dsl/specialized/script/script-query-usage.asciidoc[]

include::query-dsl/specialized/script-score/script-score-query-usage.asciidoc[]

include::query-dsl/specialized/script/script-query-usage.asciidoc[]

include::query-dsl/specialized/shape/shape-query-usage.asciidoc[]

[[span-queries]]
Expand Down
2 changes: 1 addition & 1 deletion src/DocGenerator/AsciiDoc/RawAsciidocVisitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public override void VisitAttributeEntry(AttributeEntry attributeEntry)

var list = new UnorderedList();

foreach (var directory in directories)
foreach (var directory in directories.OrderBy(s=>s))
{
var files = Directory.EnumerateFiles(
Path.Combine(Program.TmpOutputDirPath, directory), "*.asciidoc", SearchOption.AllDirectories);
Expand Down