Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/en/guide/features/lsx.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The lsx has many option settings. To set multiple options, separate each one wit
| sort | path | Specify page sort order| [sort option details](./lsx.html#sort) |
| reverse | false | Reverse the order of pages| [reverse option details](./lsx.html#reverse) |
| filter | not set | Filter pages | [filter option details](./lsx.html#filter) |
| except | not set | Exclude pages | [except option details](./lsx.html#except-option) |

### num

Expand Down Expand Up @@ -70,3 +71,9 @@ Reverse the render order.
You can filter the render pages by the string contained in the page name. Filter's match type is partial match.

- `$lsx(filter=2023)` : Only pages with `2023` in the page name will be render.

### except

You can exclude pages from the output based on strings contained in the page name. The except match type is partial match.

- `$lsx(except=2025)` : Only pages that do not contain `2025` in their page name will be displayed.
7 changes: 7 additions & 0 deletions docs/ja/guide/features/lsx.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ lsx 機能には、複数のオプション設定があります。同時に複
| sort | path | ページの並び順を指定する| [sortオプション詳細](./lsx.html#sort-オプション) |
| reverse | false | ページの並び順を逆にする| [reverseオプション詳細](./lsx.html#reverse-オプション) |
| filter | 未設定 | ページをフィルタする | [filterオプション詳細](./lsx.html#filter-オプション) |
| except | 未設定 | ページを除外する | [exceptオプション詳細](./lsx.html#except-オプション) |

### num オプション

Expand Down Expand Up @@ -70,3 +71,9 @@ lsx 機能には、複数のオプション設定があります。同時に複
出力するページを、ページ名に含まれる文字列でフィルタできます。filter のマッチタイプは部分一致です。

- `$lsx(filter=2023)` : ページ名に `2023` が含まれるページのみが出力されます。

### except オプション

出力するページを、ページ名に含まれる文字列で除外できます。except のマッチタイプは部分一致です。

- `$lsx(except=2025)` : ページ名に `2025` が含まれないページのみが出力されます。