1

Fix broken Markdown links

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2022-03-29 01:02:35 +02:00
parent bb26607c5b
commit 72099ed55f
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B
2 changed files with 5 additions and 5 deletions

View File

@ -100,7 +100,7 @@ Falkon.PluginInterface {
} }
``` ```
The plugin / extension inherits from `Falkon.PluginInterface`[1]. The plugin / extension inherits from `Falkon.PluginInterface`[link][1].
The full code can be found at The full code can be found at
[extensions/qml_tutorial_2](../extensions/qml_tutorial_2) [extensions/qml_tutorial_2](../extensions/qml_tutorial_2)

View File

@ -3,7 +3,7 @@
Hello, in this chapter I will show you how to add an entry to the Hello, in this chapter I will show you how to add an entry to the
context menu on the webpage. context menu on the webpage.
In the example I will reuse code from [Tutorial 3](tutorial3_link) and In the example I will reuse code from [Tutorial 3][tutorial3_link] and
increment the badge counter when menu entry is selected. increment the badge counter when menu entry is selected.
@ -28,15 +28,15 @@ populateWebViewMenu: function(menu, webHitTestResult) {
Menu to which the action will be added. Menu to which the action will be added.
The submenu can also be created, might be added later. For now just go The submenu can also be created, might be added later. For now just go
see for yourself files see for yourself files
[qmlmenu.h](qmlmenu_h_link) [qmlmenu.h][qmlmenu_h_link]
and for exact implementation also look at and for exact implementation also look at
[qmlmenu.cpp](qmlmenu_cpp_link) [qmlmenu.cpp][qmlmenu_cpp_link]
### Argument: webHitTestResult ### Argument: webHitTestResult
Result of a simple test, what is under the mouse? Result of a simple test, what is under the mouse?
I have use a test for an image in my example, more information can be I have use a test for an image in my example, more information can be
found in the code in file found in the code in file
[qmlwebhittestresult.h](qmlwebhittestresult_link) [qmlwebhittestresult.h][qmlwebhittestresult_link]
## Example ## Example