Skip to content

Commit 60420c0

Browse files
Fix links
1 parent eecc7a9 commit 60420c0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The **first plugin found for an identifier is used**.
3131

3232
An **extension** is a logical unit extending the app with a particular functionality.
3333
Each plugin can provide multiple *extension implementations* and expose its own *extension interfaces*.
34-
More on this topic can be found in the [Extension](/gettingstarted/extension/) section
34+
More on this topic can be found in the [Extension](/extension/) section
3535

3636

3737
## Queries

src/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Contributing to existing plugins is straightforward.
4444
We highly appreciate new plugin additions, however to be shipped there should be a demand for its use case.
4545
If you want your plugin to be added to the official repositories,
4646
put it to the list of candidates in the [organization readme](https://github.com/albertlauncher) and
47-
promote it in the [community chat](/gettingstarted/help/).
47+
promote it in the [community chat](/help/).
4848
Once your plugin has some users, you can request its addition to the official repositories.
4949

5050
For a plugin to be accepted it has to satisfy the following **requirements**:

src/extension/cplusplus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nav_order: 0
99

1010
{: .note }
1111
This page focuses on the practical aspects of extending Albert using C++ and its peculiarities.
12-
To get an overview of the API refer to the general [extension](/gettingstarted/extension/) section.
12+
To get an overview of the API refer to the general [extension](/extension/) section.
1313

1414
- TOC
1515
{:toc}

src/extension/python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nav_order: 1
99

1010
{: .note }
1111
This page focuses on the practical aspects of extending Albert using Python and its peculiarities.
12-
To get an overview of the API refer to the general [extension](/gettingstarted/extension/) section.
12+
To get an overview of the API refer to the general [extension](/extension/) section.
1313

1414

1515
## Writing Python plugins
@@ -32,7 +32,7 @@ Also see the [C++ API reference](/reference/topics.html) for details.
3232
```shell
3333
git clone https://github.com/<your_username>/python.git "${USER_DATA_DIR}/python/plugins"
3434
```
35-
You can find the `${USER_DATA_DIR}` for your platform in [this table](https://albertlauncher.github.io/gettingstarted/faq/#where-are-cache-config-and-data-files-stored).
35+
You can find the `${USER_DATA_DIR}` for your platform in [this table](https://albertlauncher.github.io/faq/#where-are-cache-config-and-data-files-stored).
3636
* Open the directory in your favorite IDE (PyCharmCE is a good choice).
3737
* Write your plugin.
3838
* Make sure it is polished (No bugs, few to no warnings, efficient, readable, maintainable, …).
@@ -43,7 +43,7 @@ Also see the [C++ API reference](/reference/topics.html) for details.
4343
## Plugin directories
4444

4545
Python plugin directories are the directories at `python/plugins` relative to the
46-
[app data directories](https://albertlauncher.github.io/gettingstarted/faq/#where-are-cache-config-and-data-files-stored).
46+
[app data directories](/faq/#where-are-cache-config-and-data-files-stored).
4747

4848
- **xdg**:
4949
- `~/.local/share/albert/python/plugins`

0 commit comments

Comments
 (0)