Answers for "markdown table of contents"

21

markdown table

Layout:
| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |
  
An amazing website for building a table in markdown:
https://www.tablesgenerator.com/markdown_tables
Posted by: Guest on December-07-2020
0

markdown table of contents

# Table of contents
1. [Introduction](#introduction)
2. [Some paragraph](#paragraph1)
    1. [Sub paragraph](#subparagraph1)
3. [Another paragraph](#paragraph2)

## This is the introduction <a name="introduction"></a>
Some introduction text, formatted in heading 2 style

## Some paragraph <a name="paragraph1"></a>
The first paragraph text

### Sub paragraph <a name="subparagraph1"></a>
This is a sub paragraph, formatted in heading 3 style

## Another paragraph <a name="paragraph2"></a>
The second paragraph text
Posted by: Guest on July-07-2021
0

markdown table of contents

!-- Where ever you want a table of contents item to be, which will
present itself as a hyperlink that will navigate to the part of the 
page you want it to, use the syntax below -->

- [Example Table of Contents Item](#Example-Table-of-Contents-Item)

# Shanah Capstone Project Description

- [OneWord](#OneWord)

# Shanah Capstone Project Description

<!-- What is in the square brackets is the text that will appear
in the hyperlink, and in the curved bracket is what is used to navigate
so you can keep the Text the same just separate the words with hyphens
then use a markdown heading for the point you want to navigate to
-->
Posted by: Guest on February-12-2021

Code answers related to "markdown table of contents"

Browse Popular Code Answers by Language