From 05162928c045ce4d43507e53d42433aca3cfe8a7 Mon Sep 17 00:00:00 2001 From: Jatin Chawda <38835306+jatinchawda1503@users.noreply.github.com> Date: Mon, 22 Jan 2024 17:03:03 +0100 Subject: [PATCH] Docs: Fixed Urls of AsyncHtmlLoader, AsyncChromiumLoader and HTML2Text links in Web scraping Docs (#16365) Fixing links in documentation. --- docs/docs/use_cases/web_scraping.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/use_cases/web_scraping.ipynb b/docs/docs/use_cases/web_scraping.ipynb index 1478220d64..19848f19d6 100644 --- a/docs/docs/use_cases/web_scraping.ipynb +++ b/docs/docs/use_cases/web_scraping.ipynb @@ -144,11 +144,11 @@ "\n", "### AsyncHtmlLoader\n", "\n", - "The [AsyncHtmlLoader](docs/integrations/document_loaders/async_html) uses the `aiohttp` library to make asynchronous HTTP requests, suitable for simpler and lightweight scraping.\n", + "The [AsyncHtmlLoader](/docs/integrations/document_loaders/async_html) uses the `aiohttp` library to make asynchronous HTTP requests, suitable for simpler and lightweight scraping.\n", "\n", "### AsyncChromiumLoader\n", "\n", - "The [AsyncChromiumLoader](docs/integrations/document_loaders/async_chromium) uses Playwright to launch a Chromium instance, which can handle JavaScript rendering and more complex web interactions.\n", + "The [AsyncChromiumLoader](/docs/integrations/document_loaders/async_chromium) uses Playwright to launch a Chromium instance, which can handle JavaScript rendering and more complex web interactions.\n", "\n", "Chromium is one of the browsers supported by Playwright, a library used to control browser automation. \n", "\n", @@ -178,7 +178,7 @@ "\n", "### HTML2Text\n", "\n", - "[HTML2Text](docs/integrations/document_transformers/html2text) provides a straightforward conversion of HTML content into plain text (with markdown-like formatting) without any specific tag manipulation. \n", + "[HTML2Text](/docs/integrations/document_transformers/html2text) provides a straightforward conversion of HTML content into plain text (with markdown-like formatting) without any specific tag manipulation. \n", "\n", "It's best suited for scenarios where the goal is to extract human-readable text without needing to manipulate specific HTML elements.\n", "\n",