From 72099ed55f30fdb0d347f090abf82f1018aa525d Mon Sep 17 00:00:00 2001 From: Juraj Oravec Date: Tue, 29 Mar 2022 01:02:35 +0200 Subject: [PATCH] Fix broken Markdown links Signed-off-by: Juraj Oravec --- qml/articles/2.Basic_extension.md | 2 +- qml/articles/4.Adding_entry_to_the_web_context_menu.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/qml/articles/2.Basic_extension.md b/qml/articles/2.Basic_extension.md index 9f64735..19731be 100644 --- a/qml/articles/2.Basic_extension.md +++ b/qml/articles/2.Basic_extension.md @@ -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 [extensions/qml_tutorial_2](../extensions/qml_tutorial_2) diff --git a/qml/articles/4.Adding_entry_to_the_web_context_menu.md b/qml/articles/4.Adding_entry_to_the_web_context_menu.md index a9edb9c..38dc169 100644 --- a/qml/articles/4.Adding_entry_to_the_web_context_menu.md +++ b/qml/articles/4.Adding_entry_to_the_web_context_menu.md @@ -3,7 +3,7 @@ Hello, in this chapter I will show you how to add an entry to the 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. @@ -28,15 +28,15 @@ populateWebViewMenu: function(menu, webHitTestResult) { Menu to which the action will be added. The submenu can also be created, might be added later. For now just go see for yourself files -[qmlmenu.h](qmlmenu_h_link) +[qmlmenu.h][qmlmenu_h_link] and for exact implementation also look at -[qmlmenu.cpp](qmlmenu_cpp_link) +[qmlmenu.cpp][qmlmenu_cpp_link] ### Argument: webHitTestResult 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 found in the code in file -[qmlwebhittestresult.h](qmlwebhittestresult_link) +[qmlwebhittestresult.h][qmlwebhittestresult_link] ## Example