Integrated Developer Portal - Markdown - Link to section in the same page

How to provide link to a section in the same page in Integrated Developer Portal

Trying to test the content from

https://github.com/aogilvie/markdownLinkTest/blob/master/README.md

markdownLinkTest
================

# Contents

- [Title](#title)
- [Big Title](#big-title)
- [Medium Title](#medium-title) 
- [Small Title](#small-title) 

# Title

## Big Title
This tests links in Github markdown.

### Medium Title
This tests links in Github markdown.


#### Small Title
This tests links in Github markdown.
Solved Solved
0 3 315
1 ACCEPTED SOLUTION

To provide a link to another section, I've found this works if you create an anchor in html with a name and then link to it eg for a publish page with links to first and second sections..


**Contents**
1. [First section](publish#first)
2. [Second section](publish#second)


<a name="first"></a>
## First Section
x
y
z

<a name="second"></a>
## Second Section
x
y
z

View solution in original post

3 REPLIES 3

To provide a link to another section, I've found this works if you create an anchor in html with a name and then link to it eg for a publish page with links to first and second sections..


**Contents**
1. [First section](publish#first)
2. [Second section](publish#second)


<a name="first"></a>
## First Section
x
y
z

<a name="second"></a>
## Second Section
x
y
z

+1 I use the same setup.

jincyv
New Member

Hi,

Is it possible to add tables and shapes (rectangular box with data) inside Mark Down in the editor?Can you please help me on this with a solution?