Wiki でシンタックス ハイライトを使用する

robotsnoindex
robotsnoindex

You can highlight snippets of text on your Bitbucket Cloud wiki pages. We use the excellent Pygments library to style our code. Here is an example of some Python code, formatted in a Bitbucket wiki:

コード ブロックをフォーマットするために使用できる構文は、Wiki に選択した言語に応じて異なります。言語を変更するには、Wiki ページの右上で [編集] をクリックし、次のスクリーンショットのように [言語] ドロップダウンを見つけます。

次に上記のように、コードを整形するために適切なシンタックスを使用します。

マークダウンCreole
```
#!python

def wiki_rocks(text):
	formatter = lambda t: "funky"+t
	return formatter(text)
```
{{{
#!python

def wiki_rocks(text):
	formatter = lambda t: "funky"+t
	return formatter(text)
}}}
TextilereStructuredText
bc. #!python
def wiki_rocks(text):
	formatter = lambda t: "funky"+t
	return formatter(text)

.. sourcecode :: python
 
 def wiki_rocks(text):
    formatter = lambda t: "funky"+t
    return formatter(text)

For details on the various languages, see their corresponding documentation on the web. See the library of Pygment lexersBitbucket Cloud supports the short name or the mimetype of anything in that library.

最終更新日 2020 年 6 月 24 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.