Markdown internal link generation tool

This tool automatically generates a link (table of contents) in the page based on the Markdown format text entered.
Generate a link based on a Markdown heading entry.

How to use internal link generator

This tool will generate a table of contents link when you type in Markdown text. Let's paste the Markdown text into the input form on the left side of the screen.

For example, if you generate an internal link based on a Markdown text like the following, it will detect the heading elements [#] and [##] and create an internal link.

# Hello World

## header1
- list1
- list2


```javascript
# test code
console.log('hello');
```

## header2
- list3
- list4
            

The following is an example of the output result.

- [Hello World](#Hello-World)
  - [header1](#header1)
  - [header2](#header2)


# Hello World

## header1
- list1
- list2


```
# test code
console.log('hello');
```

## header2
- list3
    - list4