From 1630f564cd0cd20440b38c142bdee70e99d15175 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 2 Mar 2022 20:17:25 +0900 Subject: attach tags to each post --- .../cpp-you-can-use-keywords-in-attributes.md | 1 + content/posts/phperkaigi-2021.md | 1 + content/posts/python-unbound-local-error.md | 1 + .../posts/ruby-detect-running-implementation.md | 1 + content/posts/ruby-then-keyword-and-case-in.md | 1 + .../posts/rust-where-are-primitive-types-from.md | 1 + ...nce-between-autocmd-bufwrite-and-bufwritepre.md | 1 + content/posts/vim-swap-order-of-selected-lines.md | 1 + .../index.html | 6 + docs/posts/phperkaigi-2021/index.html | 7 ++ docs/posts/python-unbound-local-error/index.html | 6 + .../ruby-detect-running-implementation/index.html | 5 + .../posts/ruby-then-keyword-and-case-in/index.html | 6 + .../rust-where-are-primitive-types-from/index.html | 5 + .../index.html | 5 + .../vim-swap-order-of-selected-lines/index.html | 5 + docs/sitemap.xml | 38 +++++- docs/tags/conference/index.html | 121 ++++++++++++++++++ docs/tags/conference/index.xml | 32 +++++ docs/tags/conference/page/1/index.html | 1 + docs/tags/cpp/index.html | 111 +++++++++++++++++ docs/tags/cpp/index.xml | 22 ++++ docs/tags/cpp/page/1/index.html | 1 + docs/tags/cpp17/index.html | 111 +++++++++++++++++ docs/tags/cpp17/index.xml | 22 ++++ docs/tags/cpp17/page/1/index.html | 1 + docs/tags/index.xml | 102 ++++++++++++++- docs/tags/php/index.html | 121 ++++++++++++++++++ docs/tags/php/index.xml | 32 +++++ docs/tags/php/page/1/index.html | 1 + docs/tags/phperkaigi/index.html | 121 ++++++++++++++++++ docs/tags/phperkaigi/index.xml | 32 +++++ docs/tags/phperkaigi/page/1/index.html | 1 + docs/tags/python/index.html | 115 +++++++++++++++++ docs/tags/python/index.xml | 26 ++++ docs/tags/python/page/1/index.html | 1 + docs/tags/python3/index.html | 115 +++++++++++++++++ docs/tags/python3/index.xml | 26 ++++ docs/tags/python3/page/1/index.html | 1 + docs/tags/ruby/index.html | 132 ++++++++++++++++++++ docs/tags/ruby/index.xml | 40 ++++++ docs/tags/ruby/page/1/index.html | 1 + docs/tags/ruby3/index.html | 113 +++++++++++++++++ docs/tags/ruby3/index.xml | 24 ++++ docs/tags/ruby3/page/1/index.html | 1 + docs/tags/rust/index.html | 116 +++++++++++++++++ docs/tags/rust/index.xml | 27 ++++ docs/tags/rust/page/1/index.html | 1 + docs/tags/vim/index.html | 138 +++++++++++++++++++++ docs/tags/vim/index.xml | 46 +++++++ docs/tags/vim/page/1/index.html | 1 + 51 files changed, 1844 insertions(+), 3 deletions(-) create mode 100644 docs/tags/conference/index.html create mode 100644 docs/tags/conference/index.xml create mode 100644 docs/tags/conference/page/1/index.html create mode 100644 docs/tags/cpp/index.html create mode 100644 docs/tags/cpp/index.xml create mode 100644 docs/tags/cpp/page/1/index.html create mode 100644 docs/tags/cpp17/index.html create mode 100644 docs/tags/cpp17/index.xml create mode 100644 docs/tags/cpp17/page/1/index.html create mode 100644 docs/tags/php/index.html create mode 100644 docs/tags/php/index.xml create mode 100644 docs/tags/php/page/1/index.html create mode 100644 docs/tags/phperkaigi/index.html create mode 100644 docs/tags/phperkaigi/index.xml create mode 100644 docs/tags/phperkaigi/page/1/index.html create mode 100644 docs/tags/python/index.html create mode 100644 docs/tags/python/index.xml create mode 100644 docs/tags/python/page/1/index.html create mode 100644 docs/tags/python3/index.html create mode 100644 docs/tags/python3/index.xml create mode 100644 docs/tags/python3/page/1/index.html create mode 100644 docs/tags/ruby/index.html create mode 100644 docs/tags/ruby/index.xml create mode 100644 docs/tags/ruby/page/1/index.html create mode 100644 docs/tags/ruby3/index.html create mode 100644 docs/tags/ruby3/index.xml create mode 100644 docs/tags/ruby3/page/1/index.html create mode 100644 docs/tags/rust/index.html create mode 100644 docs/tags/rust/index.xml create mode 100644 docs/tags/rust/page/1/index.html create mode 100644 docs/tags/vim/index.html create mode 100644 docs/tags/vim/index.xml create mode 100644 docs/tags/vim/page/1/index.html diff --git a/content/posts/cpp-you-can-use-keywords-in-attributes.md b/content/posts/cpp-you-can-use-keywords-in-attributes.md index c039316..bd89cde 100644 --- a/content/posts/cpp-you-can-use-keywords-in-attributes.md +++ b/content/posts/cpp-you-can-use-keywords-in-attributes.md @@ -2,6 +2,7 @@ title: "[C++] 属性構文の属性名にはキーワードが使える [[void]] [[for]]" date: 2021-10-02T09:38:30+09:00 draft: false +tags: ["cpp", "cpp17"] --- diff --git a/content/posts/phperkaigi-2021.md b/content/posts/phperkaigi-2021.md index 41b0180..19b6f58 100644 --- a/content/posts/phperkaigi-2021.md +++ b/content/posts/phperkaigi-2021.md @@ -2,6 +2,7 @@ title: "PHPerKaigi 2021" date: 2021-03-30T23:22:40+09:00 draft: false +tags: ["conference", "php", "phperkaigi"] --- # PHPerKaigi 2021 参加レポ diff --git a/content/posts/python-unbound-local-error.md b/content/posts/python-unbound-local-error.md index ed5fe8e..4bec2ea 100644 --- a/content/posts/python-unbound-local-error.md +++ b/content/posts/python-unbound-local-error.md @@ -2,6 +2,7 @@ title: "[Python] クロージャとUnboundLocalError: local variable 'x' referenced before assignment" date: 2021-10-02T09:32:37+09:00 draft: false +tags: ["python", "python3"] --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/ruby-detect-running-implementation.md b/content/posts/ruby-detect-running-implementation.md index e2e7806..b2a4dbb 100644 --- a/content/posts/ruby-detect-running-implementation.md +++ b/content/posts/ruby-detect-running-implementation.md @@ -2,6 +2,7 @@ title: "[Ruby] 自身を実行している処理系の種類を判定する" date: 2021-10-02T09:37:50+09:00 draft: false +tags: ["ruby"] --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/ruby-then-keyword-and-case-in.md b/content/posts/ruby-then-keyword-and-case-in.md index deda912..1ee88c2 100644 --- a/content/posts/ruby-then-keyword-and-case-in.md +++ b/content/posts/ruby-then-keyword-and-case-in.md @@ -2,6 +2,7 @@ title: "[Ruby] then キーワードと case in" date: 2021-10-02T09:38:50+09:00 draft: false +tags: ["ruby", "ruby3"] --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/rust-where-are-primitive-types-from.md b/content/posts/rust-where-are-primitive-types-from.md index a168b42..d57ccee 100644 --- a/content/posts/rust-where-are-primitive-types-from.md +++ b/content/posts/rust-where-are-primitive-types-from.md @@ -2,6 +2,7 @@ title: "Rust のプリミティブ型はどこからやって来るか" date: 2021-10-02T09:39:27+09:00 draft: false +tags: ["rust"] --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md b/content/posts/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md index a7b7fa0..504b3d9 100644 --- a/content/posts/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md +++ b/content/posts/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md @@ -2,6 +2,7 @@ title: "[Vim] autocmd events の BufWrite/BufWritePre の違い" date: 2021-10-02T09:37:12+09:00 draft: false +tags: ["vim"] --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/vim-swap-order-of-selected-lines.md b/content/posts/vim-swap-order-of-selected-lines.md index 01e083b..3dd4aea 100644 --- a/content/posts/vim-swap-order-of-selected-lines.md +++ b/content/posts/vim-swap-order-of-selected-lines.md @@ -2,6 +2,7 @@ title: "Vimで選択した行の順番を入れ替える" date: 2021-10-02T09:37:25+09:00 draft: false +tags: ["vim"] --- この記事は Qiita から移植してきたものです。 diff --git a/docs/posts/cpp-you-can-use-keywords-in-attributes/index.html b/docs/posts/cpp-you-can-use-keywords-in-attributes/index.html index 874ddcb..21411bc 100644 --- a/docs/posts/cpp-you-can-use-keywords-in-attributes/index.html +++ b/docs/posts/cpp-you-can-use-keywords-in-attributes/index.html @@ -156,6 +156,12 @@ $ clang++ –std=c++17 hoge.cpp

identifier の構文上の要件を満たさないような代替トークン」はこれらが当てはまると思われる。

調べた感想: 字句解析器か構文解析器が辛そう

+