From 270b15e7f5cc6f3f15cced12d332d17fe5a80205 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 10 Mar 2023 02:31:50 +0900 Subject: nuldoc: fix `a` link not working --- nuldoc-src/docbook/to_html.ts | 1 + public/posts/2021-03-30/phperkaigi-2021/index.html | 2 +- .../index.html | 10 +++++----- .../2021-10-02/python-unbound-local-error/index.html | 2 +- .../ruby-detect-running-implementation/index.html | 8 ++++---- .../ruby-then-keyword-and-case-in/index.html | 4 ++-- .../rust-where-are-primitive-types-from/index.html | 4 ++-- .../index.html | 12 ++++++------ .../vim-swap-order-of-selected-lines/index.html | 2 +- .../2022-04-09/phperkaigi-2022-tokens/index.html | 8 ++++---- .../index.html | 2 +- public/posts/2022-05-01/phperkaigi-2022/index.html | 20 ++++++++++---------- .../php-conference-okinawa-code-golf/index.html | 6 +++--- .../index.html | 6 +++--- .../index.html | 2 +- .../phperkaigi-2023-unused-token-quiz-1/index.html | 4 ++-- .../2022-10-28/setup-server-for-this-site/index.html | 4 ++-- .../phperkaigi-2023-unused-token-quiz-2/index.html | 8 ++++---- .../phperkaigi-2023-unused-token-quiz-3/index.html | 10 +++++----- .../rewrite-this-blog-generator/index.html | 4 ++-- 20 files changed, 60 insertions(+), 59 deletions(-) diff --git a/nuldoc-src/docbook/to_html.ts b/nuldoc-src/docbook/to_html.ts index 31c419d..6788158 100644 --- a/nuldoc-src/docbook/to_html.ts +++ b/nuldoc-src/docbook/to_html.ts @@ -22,6 +22,7 @@ export default function toHtml(doc: Document): Document { transformElementNames(doc, "orderedlist", "ol"); transformElementNames(doc, "simpara", "p"); transformAttributeNames(doc, "xml:id", "id"); + transformAttributeNames(doc, "xl:href", "href"); transformSectionIdAttribute(doc); setSectionTitleAnchor(doc); transformSectionTitleElement(doc); diff --git a/public/posts/2021-03-30/phperkaigi-2021/index.html b/public/posts/2021-03-30/phperkaigi-2021/index.html index 0756218..0d0e484 100644 --- a/public/posts/2021-03-30/phperkaigi-2021/index.html +++ b/public/posts/2021-03-30/phperkaigi-2021/index.html @@ -49,7 +49,7 @@

PHPerKaigi 2021 参加レポ

- 2021-03-26 から 2021-03-28 にかけて開催された、PHPerKaigi 2021に一般参加者として参加した。 弊社デジタルサーカス株式会社(今年1月から勤務) はダイヤモンドスポンサーとなっており、スポンサー枠のチケットを使わせていただいた。 + 2021-03-26 から 2021-03-28 にかけて開催された、PHPerKaigi 2021に一般参加者として参加した。 弊社デジタルサーカス株式会社(今年1月から勤務) はダイヤモンドスポンサーとなっており、スポンサー枠のチケットを使わせていただいた。

diff --git a/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html b/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html index 63a1e08..e52be97 100644 --- a/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html +++ b/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html @@ -44,7 +44,7 @@

- この記事は Qiita から移植してきたものです。 元 URL:https://qiita.com/nsfisis/items/94090937bcf860cfa93b + この記事は Qiita から移植してきたものです。 元 URL:https://qiita.com/nsfisis/items/94090937bcf860cfa93b

@@ -93,7 +93,7 @@ std::cout << "Hello, World!" << std::endl;

- 別件で cppreference.com のidentifier のページを読んでいた時、次の文が目に止まった。 + 別件で cppreference.com のidentifier のページを読んでいた時、次の文が目に止まった。

@@ -119,7 +119,7 @@ std::cout << "Hello, World!" << std::endl;

- 同サイトのkeywords のページから一覧を拝借し、上のコードが出来上がった (C++17 においてキーワードでないものなど、一部省いている)。 大量の警告 (unknown attribute `〇〇' ignored) がコンパイラから出力されるが、コンパイルできる。 + 同サイトのkeywords のページから一覧を拝借し、上のコードが出来上がった (C++17 においてキーワードでないものなど、一部省いている)。 大量の警告 (unknown attribute `〇〇' ignored) がコンパイラから出力されるが、コンパイルできる。

@@ -136,7 +136,7 @@ std::cout << "Hello, World!" << std::endl;

- 引用元:https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4 + 引用元:https://timsong-cpp.github.io/cppwp/n4659/dcl.attr#grammar-4

@@ -150,7 +150,7 @@ std::cout << "Hello, World!" << std::endl;

- ところで、代替トークン (alternative token) とはand(&) やbitor(|) などのことだが、identifierの構文上の要件を満たさないような代替トークンなどあるのか? 疑問に思って調べたところ、代替トークンという語にはダイグラフも含まれるらしい (参考:同ドラフト) + ところで、代替トークン (alternative token) とはand(&) やbitor(|) などのことだが、identifierの構文上の要件を満たさないような代替トークンなどあるのか? 疑問に思って調べたところ、代替トークンという語にはダイグラフも含まれるらしい (参考:同ドラフト)