Skip to content

Commit

Permalink
Merge pull request #41 from opsmill/atg-20250203-ifc-1119
Browse files Browse the repository at this point in the history
Fix bug with capital links
  • Loading branch information
BeArchiTek authored Feb 3, 2025
2 parents e70242e + 8a38932 commit c651a6d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 3 additions & 4 deletions docs/_templates/readme.mdx.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ pip install nornir_infrahub
```

## References

{%- for plugin_name, plugin in plugins.items() %}
{% for plugin_name, plugin in plugins.items() %}
### {{ plugin_name.title() }}
{%- for module in plugin %}
{% for module in plugin %}
#### {{ module.module }}
{% for function_name, function in module.functions.items() %}
- [{{ function_name }}](./references/plugins/{{ module.file_name }}#{{ function_name }})
- [{{ function_name }}](./references/plugins/{{ module.file_name }}#{{ function_name.lower() }})
{% endfor %}
{%- endfor %}
{%- endfor %}
5 changes: 4 additions & 1 deletion docs/docs/nornir/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ pip install nornir_infrahub
```

## References

### Inventory

#### Inventory plugin

- [InfrahubInventory](./references/plugins/infrahub_inventory.mdx#InfrahubInventory)
- [InfrahubInventory](./references/plugins/infrahub_inventory.mdx#infrahubinventory)

### Tasks

#### Artifact management plugin

- [regenerate_host_artifact](./references/plugins/artifact_tasks.mdx#regenerate_host_artifact)
Expand Down

0 comments on commit c651a6d

Please sign in to comment.