0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Bitbucket Wikiでのアンカーの付け方

Last updated at Posted at 2020-03-04

はじめに

  • Bitbucket Wikiでドキュメントをまとめようとしていたところ,Markdownアンカーリンクがうまく設定できなかった
  • 解決できたので,その方法

問題の事象

下記のようなマークダウンを書いた場合,どちらもアンカーリンクが動作しない

(はじめに)[#はじめに]
(usage)[#usage]

# はじめに
...

# usage
...

調査

ヘッダー部分のHTMLを確認してみると以下のようになっていた

<h1 id="markdown-header-_1">はじめに</h1>
<h1 id="markdown-header-usage">usage</h1>

解決方法

  • リンクを指定する際に#markdown-header-をプレフィックスとして追加する
  • 日本語の場合は通し番号が付与されるので,それを指定する
(はじめに)[#markdown-header-_1]
(usage)[#markdown-header-usage]

# はじめに
...

# usage
...
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?