From 67720c3a02ddc4359251ac9ada6bb72a0247df8d Mon Sep 17 00:00:00 2001 From: 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> Date: Sat, 24 May 2025 02:08:37 +0900 Subject: [PATCH 1/2] =?UTF-8?q?ci:=20textlint=E3=81=AE=E3=82=A8=E3=83=A9?= =?UTF-8?q?=E3=83=BC=E3=81=AE=E6=8A=91=E5=88=B6=E3=82=92=E7=84=A1=E5=8A=B9?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d7da976ddb..2e1965ca69 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,7 +40,6 @@ jobs: run: bun install --frozen-lockfile - name: Lint Markdown using textlint run: bun run --bun textlint-md - continue-on-error: true textlint-html: runs-on: ubuntu-24.04 @@ -58,4 +57,3 @@ jobs: run: bun install --frozen-lockfile - name: Lint HTML using textlint run: bun run --bun textlint-html - continue-on-error: true From 0757fcd10e3e1a5a8a33e006616a881990fe0994 Mon Sep 17 00:00:00 2001 From: 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> Date: Sat, 24 May 2025 02:09:07 +0900 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20textlint=E3=81=AE=E6=8C=87=E6=91=98?= =?UTF-8?q?=E3=82=92=E9=81=A9=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/typst-library/src/model/reference.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typst-library/src/model/reference.rs b/crates/typst-library/src/model/reference.rs index 4e390407ce..2fc27e8da5 100644 --- a/crates/typst-library/src/model/reference.rs +++ b/crates/typst-library/src/model/reference.rs @@ -61,7 +61,7 @@ use crate::text::TextElem; /// # Syntax /// この機能には専用の記法も用意されています。 /// `{"normal"}` の参照を作成するためには`@`に続けてラベル名を入力します。 -/// (たとえば`[= Introduction ]`というラベルを参照するには`[@intro]`と入力します。) +/// (たとえば`[= Introduction ]`というラベルを参照するには`[@intro]`と入力します) /// /// 補足語をカスタマイズするには、 /// `[@intro[Chapter]]`のように、参照の後に角括弧でコンテンツを追加します。