[DOCS] Add space to fix Asciidoctor output#41579
[DOCS] Add space to fix Asciidoctor output#41579jrodewig merged 1 commit intoelastic:masterfrom jrodewig:asciidoctor-sql-syntax-select
Conversation
| // tag::groupByAndAggExpression | ||
| schema::g:s|salary:i | ||
| SELECT gender AS g, ROUND((MIN(salary) / 100)) AS salary FROM emp GROUP BY gender; | ||
| SELECT gender AS g, ROUND( (MIN(salary) / 100) ) AS salary FROM emp GROUP BY gender; |
There was a problem hiding this comment.
I know this is in the file called docs.csv-spec but I'm worried that folks will remove the spacing without realizing the change that it makes in the docs. I wonder if there is a better way to change this. Let me look around some!
|
Pinging @elastic/es-docs |
|
This failure is caused because we use the +ifdef::asciidoctor[]
+[source,sql]
+endif::[]
+ifndef::asciidoctor[]
["source","sql",subs="attributes,callouts,macros"]
+endif::[]This suggests that we probably should remove Now that I understand it I'm fine with either fix so long as we make sure to blast |
Asciidoctor outputs
((MIN(salary) / 100))as<indexterm><primary>MIN(salary) / 100</primary></indexterm>. This adds whitespace to correct the output in preparation for the Asciidoctor migration.Relates to elastic/docs#827 and #41128.