[DOCs] Trying to use relative markdown links
This commit is contained in:
parent
648cd1cc8d
commit
3b9f6e2f49
|
|
@ -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.
|
||||||
|
|
|
||||||
|
|
@ -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'
|
||||||
|
|
|
||||||
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue