[DOCs] Trying to use relative markdown links

This commit is contained in:
Salvador E. Tropea 2022-10-28 08:53:58 -03:00
parent 648cd1cc8d
commit 3b9f6e2f49
3 changed files with 3 additions and 3 deletions

View File

@ -2870,7 +2870,7 @@ Notes:
Each step shows the already soldered components and the ones to add highlighted. Each step shows the already soldered components and the ones to add highlighted.
This is equivalent to the PcbDraw's Populate command, but integrated to KiBot. This is equivalent to the PcbDraw's Populate command, but integrated to KiBot.
For more information about the input markdown file please consult the For more information about the input markdown file please consult the
[documentation](https://github.com/INTI-CMNB/KiBot/blob/master/docs/populate.md) [documentation](docs/populate.md)
* Valid keys: * Valid keys:
- **`comment`**: [string=''] A comment for documentation purposes. - **`comment`**: [string=''] A comment for documentation purposes.
- **`dir`**: [string='./'] Output directory for the generated files. - **`dir`**: [string='./'] Output directory for the generated files.

View File

@ -1634,7 +1634,7 @@ outputs:
# Each step shows the already soldered components and the ones to add highlighted. # Each step shows the already soldered components and the ones to add highlighted.
# This is equivalent to the PcbDraw's Populate command, but integrated to KiBot. # This is equivalent to the PcbDraw's Populate command, but integrated to KiBot.
# For more information about the input markdown file please consult the # For more information about the input markdown file please consult the
# [documentation](https://github.com/INTI-CMNB/KiBot/blob/master/docs/populate.md) # [documentation](docs/populate.md)
- name: 'populate_example' - name: 'populate_example'
comment: 'Creates a markdown and/or HTML file explaining how to assembly a PCB.' comment: 'Creates a markdown and/or HTML file explaining how to assembly a PCB.'
type: 'populate' type: 'populate'

View File

@ -195,7 +195,7 @@ class Populate(BaseOutput): # noqa: F821
Each step shows the already soldered components and the ones to add highlighted. Each step shows the already soldered components and the ones to add highlighted.
This is equivalent to the PcbDraw's Populate command, but integrated to KiBot. This is equivalent to the PcbDraw's Populate command, but integrated to KiBot.
For more information about the input markdown file please consult the For more information about the input markdown file please consult the
[documentation](https://github.com/INTI-CMNB/KiBot/blob/master/docs/populate.md) """ [documentation](docs/populate.md) """
def __init__(self): def __init__(self):
super().__init__() super().__init__()
with document: with document: