サーチ…


インラインリンク

マークダウンのリンクの形式は次のとおりです。

[Shown Text](Link)

たとえば、 Example.comは次のように作成されます。

[This will take you to Example.com](http://www.example.com)

参照リンク

リンクのURLはドキュメントの後の方で指定できます。

マークダウン

[Text1][1] will link to the first link, and [Text2][2] to the second.
You [can reuse][1] names, and give longer names [like this one][a link].
You can also link text [like this] without giving the reference an explicit name.

[1]: http://www.google.com
[2]: http://stackoverflow.com/
[a link]: http://example.org/
[like this]: http://stackexchange.com/

出力

Text1は最初のリンクにリンクし、 Text2は2番目のリンクにリンクします。名前を再利用して、 このような長い名前を付けることができます。また、参照に明示的な名前を付けずに、 このようなテキストをリンクすることもできます。

名前付きアンカー(ページの断片へのリンク)

宛先を作成する

<a id="destinationLinkName"></a>

宛先へのリンク

[link text](#destinationLinkName)



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow