123

123

Linqing

Markdown Test Document

Table of Contents

  1. Introduction 1.1 2. Headers

  2. Text Styles example image

  3. Links and Images

  4. Links and Images

  5. Links and Images

  6. Lists

  7. Code

  8. Tables

  9. Quotes

Introduction

This is a test document for Markdown features. Markdown allows you to write in an easy-to-read format that can be converted into HTML.

Headers

H1

H2

H3

H4

H5
H6

Text Styles

This is italic
This is bold
This is bold and italic
This is strikethrough

Links and Images

This is a link to Google
This is an image alt text

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
  3. Third item

Code

Inline code has back-ticks around it.

# This is a code block
def hello_world():
  print("Hello, world!")
import { useState } from "react";

const Slides = () => {
  const images = [
    {
      src: eventPicture,
      width: 500, // replace with the actual width of the image
      height: 300,
    },
    {
      src: thirdPicture,
      width: 500, // replace with the actual width of the image
      height: 300, // replace with the actual height of the image
    },
    // ... other images
  ];

  const [currentImageIndex, setCurrentImageIndex] = useState(0);

  const nextImage = () => {
    setCurrentImageIndex((prevIndex) =>
      prevIndex === images.length - 1 ? 0 : prevIndex + 1
    );
  };
©2023 Cyan. All rights reserved.
Lama DevLama DevLama DevLama Dev