Skip to content

Commit

Permalink
Treat all links as external, fix warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey committed Jun 6, 2024
1 parent 972736e commit d4bfbb0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
7 changes: 1 addition & 6 deletions base_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
]

myst_heading_anchors = 4
myst_all_links_external = True

myst_enable_extensions = [
"amsmath",
Expand All @@ -63,12 +64,6 @@
"tasklist",
]

nitpicky = False
nitpick_ignore_regex = [
("myst", r'/api/.*'),
("myst", r'/libs/?.*')
]

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

Expand Down
12 changes: 6 additions & 6 deletions harmonic/migration_from_ignition.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ In `CMakeLists.txt` files (and their references in your source files!):

**Variables and macro/function calls**

```cpp
```
Find: IGN(ITION)?_GAZEBO
Replace: GZ_SIM
Expand All @@ -255,7 +255,7 @@ Replace: gz_

**Includes**

```cpp
```
Find: include\(Ign
Replace: include(Gz
Expand Down Expand Up @@ -341,7 +341,7 @@ The plugin finder is able to find plugins even if their filenames are stripped o

In `.sdf` files and source files (e.g. `.cc`):

```cpp
```
Find: (lib)?ign(ition)?-gazebo([^. ]*)\.so
Replace: gz-sim\3
Expand Down Expand Up @@ -378,7 +378,7 @@ Replace: gz/

In your message definitions

```cpp
```
Find: ign(ition)?\.gazebo
Replace: gz.sim
Expand All @@ -398,7 +398,7 @@ Sweeping checks everywhere (pay special attention to reviewing these!)

**Headers**

```cpp
```
Find: #include\s*([<"])ign(ition)?/gazebo
Replace: #include \1gz/sim
Expand All @@ -416,7 +416,7 @@ Replace: #endif // GZ$1_H

**Namespaces**

```cpp
```
Find: namespace\s*ignition
Replace: namespace gz
Expand Down

0 comments on commit d4bfbb0

Please sign in to comment.