Skip to content

Commit ac75678

Browse files
committed
fixing W-18185062
1 parent a0494b8 commit ac75678

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

.readthedocs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,7 @@ sphinx:
2727
formats:
2828
- pdf
2929
- epub
30+
# Optionally declare the Python requirements required to build your docs
31+
python:
32+
install:
33+
- requirements: requirements_dev.txt

docs/conf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,8 @@
227227

228228

229229
# -- Options for LaTeX output ------------------------------------------
230+
latex_engine = "xelatex"
231+
230232

231233
latex_elements = {
232234
# The paper size ('letterpaper' or 'a4paper').

docs/continuous-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ variables to provide access to orgs and services [in a headless context](headles
5050

5151
CumulusCI makes it easy to harness the power of second-generation
5252
managed packages to implement an advanced, comprehensive testing process
53-
for both first- and second-generation managed package products. This is
53+
for both first and second-generation managed package products. This is
5454
described in [](2gp-testing).
5555

5656
## Further Reading

docs/robot-advanced.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ These permit downstream processing in tools like CCI and MetaCI.
8686
Note: `cci_metric` is not included in Robot's html statistical
8787
roll-ups.
8888

89-
```robot
89+
```robotframework
9090
Set Test Metric Max_CPU_Percent 30
9191
```
9292

@@ -102,7 +102,7 @@ keyword queries Salesforce for its recorded log of a job.
102102

103103
For example, to query an Apex bulk job:
104104

105-
```robot
105+
```robotframework
106106
${time_in_seconds} = Elapsed Time For Last Record
107107
... obj_name=AsyncApexJob
108108
... where=ApexClass.Name='BlahBlah'
@@ -215,7 +215,7 @@ By using an alias, you can reference the page object with either the
215215
alias or the actual object name. For example, if `object_name` is set as
216216
described above, the following two uses of `Go to page` are identical:
217217

218-
```robot
218+
```robotframework
219219
Go to page Listing My Object
220220
Go to page Listing MyObject__c
221221
```
@@ -593,7 +593,7 @@ if you were in the NPSP repository.
593593
For example, in a project which has been configured to use NPSP as a
594594
source, the `NPSP.robot` file can be imported into a test suite.
595595

596-
```robot
596+
```robotframework
597597
*** Settings ***
598598
Resource robot/Cumulus/resources/NPSP.robot
599599
```

docs/robot.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@ named after your project. Save this code in a file named
597597
*** Settings ***
598598
Resource cumulusci/robotframework/Salesforce.robot
599599
600+
*** Test Cases ***
600601
Create a test Contact
601602
[Documentation] Create a temporary Contact and return it
602603

0 commit comments

Comments
 (0)