From 6aa22b508874b82a03aaae016004ad719ea6b683 Mon Sep 17 00:00:00 2001 From: DestroyerBDT Date: Mon, 3 Jun 2024 03:58:03 +0530 Subject: [PATCH] Fixed markdown in Regex section (#31) --- devs/scraping/starting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devs/scraping/starting.md b/devs/scraping/starting.md index 6dee852..25c3116 100644 --- a/devs/scraping/starting.md +++ b/devs/scraping/starting.md @@ -150,7 +150,7 @@ fun main() { ## **Regex:** -When working with Regex I highly recommend using (regex101.com)[https://regex101.com/] (using the python flavor) +When working with Regex I highly recommend using [regex101.com](https://regex101.com/) (using the python flavor) Press Ctrl + U @@ -219,4 +219,4 @@ fun main() { val description = descriptionRegex.find(response.text)?.groups?.get(1)?.value println(description) } -``` \ No newline at end of file +```