diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1fdb08131..832f7eed6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -45,6 +45,7 @@ jobs: run(`$(npm_cmd()) install lunr`); using Franklin; serve(single=true, cleanup=false); + isfile("robots.txt") && rm("robots.txt"); lunr(); optimize(minify=false, prerender=false);' - name: Build and Deploy diff --git a/documentation/modules/inset.md b/documentation/modules/inset.md index d54dc54df..562648eb7 100644 --- a/documentation/modules/inset.md +++ b/documentation/modules/inset.md @@ -40,7 +40,7 @@ Required Arguments Use **size=(length,width)** (or **width**) of bounding rectangle or box in plot coordinates (inches, cm, etc.). By default, the anchor point on the scale is assumed to be the bottom left corner (BL), but this can be changed - by using **justify=??** where *??* stands for a 2-char justification code *justify* (see myreflink{text}). + by using **justify=??** where *??* stands for a 2-char justification code *justify* (see \myreflink{text}). Note: with the default **outside=true**, the *justify* defaults to the same as **anchor**, if **inside=true** is used then *justify* defaults to the mirror opposite of **anchor**. Specify inset box attributes via the **box** option [outline only]. Alternatively, use **position="west/east/south/north"** of geographic rectangle bounded by parallels and diff --git a/tutorials/mosaics/mosaics.md b/tutorials/mosaics/mosaics.md index 2ba6275f2..84bba491f 100644 --- a/tutorials/mosaics/mosaics.md +++ b/tutorials/mosaics/mosaics.md @@ -93,7 +93,7 @@ an image of the Big Island, Hawaii we do: ```julia using GMT -D = geocoder("Hawaii Island, USA"); +D = geocoder("Hawaii Big Island, USA"); I = mosaic(D, bbox=true); viz(I) ```