From 9c28c422ee2740d169536dafe88fd8801aae1694 Mon Sep 17 00:00:00 2001 From: Sanmay Joshi Date: Tue, 31 Dec 2019 12:33:55 +0530 Subject: [PATCH] Correct hyperlink for 'markdownify' function ### Changes added a slash '/', so that link is referenced from root of the domain and not current page ### Previously ``` **Note** that this method is more powerful than the similar [markdownify](functions/markdownify/) function as it also supports [Render Hooks](/getting-started/configuration-markup/#markdown-render-hooks) and it has options to render other markup formats. ``` ### Now ``` **Note** that this method is more powerful than the similar [markdownify](/functions/markdownify/) function as it also supports [Render Hooks](/getting-started/configuration-markup/#markdown-render-hooks) and it has options to render other markup formats. ``` --- content/en/functions/RenderString.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/functions/RenderString.md b/content/en/functions/RenderString.md index 50dc84535..e62f0cae0 100644 --- a/content/en/functions/RenderString.md +++ b/content/en/functions/RenderString.md @@ -36,4 +36,4 @@ Some examples: ``` -**Note** that this method is more powerful than the similar [markdownify](functions/markdownify/) function as it also supports [Render Hooks](/getting-started/configuration-markup/#markdown-render-hooks) and it has options to render other markup formats. +**Note** that this method is more powerful than the similar [markdownify](/functions/markdownify/) function as it also supports [Render Hooks](/getting-started/configuration-markup/#markdown-render-hooks) and it has options to render other markup formats.