<<product>> マクロ

構文

<<product {mariadb | mysql} { version=# | from=# | to=# } [indent=L]>>
  • fromto を組み合わせることもできます。
  • # を、指定する MariaDB/MySQL のバージョンに置き換えてください。
  • indent について、L を字下げレベル (1〜4) に置き換えてください。 (リスト の余白の大きさと対応しています)

概要

<<product>> マクロで囲んだ部分は、特定の製品やバージョンにのみ適用されることを示すセクションとなります。

<<product>> マクロを使用した場合、記事中に記述したすべてのバージョンが サイドバーの Product Versions メニューにリストアップされ、個別に強調表示できるようになります (未選択のバージョンがグレイアウトされます)。

version 属性

<<product mariadb version=5.5.24>>
これは **MariaDB** 5.5.24 にのみ適用されます。
<</product>>

次のように表示されます:

MariaDB 5.5.24

これは MariaDB 5.5.24 にのみ適用されます。

from 属性

<<product mariadb from=10.0>>
これは **MariaDB** 10.0 以上 (10.0 を含む) に適用されます。
<</product>>

次のように表示されます:

MariaDB starting with 10.0

これは MariaDB 10.0 以上 (10.0 を含む) に適用されます。

to 属性

<<product mariadb to=5.1>>
これは **MariaDB** 5.1 以下 (5.1 を含む) に適用されます。
<</product>>

次のように表示されます:

MariaDB until 5.1

これは MariaDB 5.1 以下 (5.1 を含む) に適用されます。

from 属性と to 属性

<<product mysql from=3.23 to=5>>
これは **MySQL** 3.23〜5 に適用されます。
<</product>>

次のように表示されます:

MySQL 3.23 - 5

これは MySQL 3.23〜5 に適用されます。

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.