programing

Github Markdown 동일 페이지 링크

nasanasas 2020. 11. 28. 09:38
반응형

Github Markdown 동일 페이지 링크


동일한 git 허브 위키 페이지 내에 두 개의 포인트가 있다고 가정 해 보겠습니다.이를 위해 place 1place 2.

##Title

###Place 1

Hello, this is some text to fill in this, [here](place2), is a link to the second place.

###Place 2

Place one has the fun times of linking here, but I can also link back [here](place1).

대안은 ToC입니다.

##Title
[ToC]
###Place 1
###Place 2

이것을 할 방법이 있습니까? 참고- 이것을 보았 으므로 주제에 있다고 가정합니다. 또한 파일 간 이동을 처리하고, 이것은 동일한 파일 간 이동을 처리합니다.


이것은 Github에서 작동합니다.

## Title

### Place 1

Hello, this is some text to fill in this, [here](#place-2), is a link to the second place.

### Place 2

Place one has the fun times of linking here, but I can also link back [here](#place-1).

변환 규칙 요약 :

  • 문장 부호가 삭제됩니다.
  • 선행 공백이 삭제됩니다.
  • 대문자는 소문자로 변환됩니다
  • 문자 사이의 공백은 다음으로 변환됩니다. -

많은 링크와 형식이있는 좋은 예제 문서는 LivingSocial API 디자인 가이드입니다.


예를 들어 같은 이름의 (하위) 머리글이 여러 개있는 경우 명명 된 사용자 지정 앵커를 만들 수도 있습니다. 헤더로이를 수행하려면 HTML 태그를 삽입하십시오.

<h4 id="login-optional-fields">
Optional Fields
</h4>

그런 다음 ID 속성으로 링크하십시오.

[see above](#login-optional-fields)

문서에 직접 앵커 태그를 추가하는 것도 작동합니다.

<a id="my-anchor"></a>

참고 URL : https://stackoverflow.com/questions/27981247/github-markdown-same-page-link

반응형