From 4fd78b97ff6f4c5555d5dc29cc1fe7d4ae2af333 Mon Sep 17 00:00:00 2001 From: ayan1c2 Date: Tue, 12 Nov 2024 15:41:24 +0000 Subject: [PATCH] deploy: f96fef5765b19b4be5beef860fcb217213b9fa75 --- sitemap.xml | 18 ++- test.html | 375 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 387 insertions(+), 6 deletions(-) create mode 100644 test.html diff --git a/sitemap.xml b/sitemap.xml index 5ad4321..1d35aad 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,37 +2,43 @@ https://.github.io//CLMS_doc_example.html - 2024-11-12T15:39:09Z + 2024-11-12T15:41:23Z monthly 0.8 https://.github.io//CLMS_filenamingconvention.html - 2024-11-12T15:39:09Z + 2024-11-12T15:41:23Z monthly 0.8 https://.github.io//CheatSheet.html - 2024-11-12T15:39:09Z + 2024-11-12T15:41:23Z monthly 0.8 https://.github.io//README.html - 2024-11-12T15:39:09Z + 2024-11-12T15:41:23Z monthly 0.8 https://.github.io//clms.html - 2024-11-12T15:39:09Z + 2024-11-12T15:41:23Z monthly 0.8 https://.github.io//guidelines.html - 2024-11-12T15:39:09Z + 2024-11-12T15:41:23Z + monthly + 0.8 + + + https://.github.io//test.html + 2024-11-12T15:41:23Z monthly 0.8 diff --git a/test.html b/test.html new file mode 100644 index 0000000..48b7956 --- /dev/null +++ b/test.html @@ -0,0 +1,375 @@ + + + + + + + + + + + + + +Guidelines for Using Quarto Markdown in HTML for Web Crawling + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+

Guidelines for Using Quarto Markdown in HTML for Web Crawling

+
+ +
+
+ This document provides guidelines for using Quarto Markdown in HTML for web crawling. +
+
+ + +
+ +
+
Author
+
+

Ayan Chatterjee, NILU DIGITAL

+
+
+ +
+
Published
+
+

October 30, 2024

+
+
+ + +
+ + +
+ +
+

Guidelines for Using Quarto Markdown in HTML for Web Crawling

+

Purpose: This document provides guidelines on using Quarto Markdown to create HTML files optimized for web crawling. These steps and syntaxes will help you structure content, enhance SEO, and improve discoverability of your pages.

+
+

Prerequisites

+
    +
  1. Install RStudio: Download and install RStudio from RStudio Download.
  2. +
  3. Install Quarto: Follow Quarto installation to install the Quarto CLI.
  4. +
+
+
+

Basic Setup in RStudio

+
    +
  1. Create a New Quarto Document: +
      +
    • In RStudio, go to File > New File > Quarto Document.
    • +
    • Choose the type of document (e.g., HTML) and enter your title and metadata in the YAML header.
    • +
  2. +
  3. Save the File: +
      +
    • Save the file with a .qmd extension to ensure it is treated as a Quarto Markdown file.
    • +
  4. +
  5. YAML Header Configuration: +
      +
    • Configure the YAML header with essential metadata to optimize the document for web crawling.
    • +
  6. +
+
+
+

YAML Header Configuration for SEO

+

The YAML header includes metadata that is critical for SEO and web crawling.

+
+
+

```yaml

+

title: “Optimized Web Crawling Document” author: “Your Name” date: “2024-10-08” format: html sitemap: true # Enable sitemap generation for web crawlers toc: true # Include a Table of Contents for better navigation toc-title: “Contents” toc-depth: 3 # Set TOC depth to include up to h3 headings keywords: [“SEO”, “web crawling”, “Quarto Markdown”, “HTML”] description: “This document provides guidelines for using Quarto Markdown in HTML for web crawling.” —

+
+
+ +
+ + +
+ + + + \ No newline at end of file