summaryrefslogtreecommitdiffhomepage
path: root/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-20 03:14:42 +0900
committernsfisis <nsfisis@gmail.com>2025-07-20 03:14:42 +0900
commit1f1870a1852558166cabfdfdcc4bc1437e37a45a (patch)
tree163ce5c5a7c6147c2f566b25e40dcadb9b210945 /services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
parent037da3c3c4cf7d4e62cb5248ecccfe75d88f684b (diff)
downloadnsfisis.dev-1f1870a1852558166cabfdfdcc4bc1437e37a45a.tar.gz
nsfisis.dev-1f1870a1852558166cabfdfdcc4bc1437e37a45a.tar.zst
nsfisis.dev-1f1870a1852558166cabfdfdcc4bc1437e37a45a.zip
feat(blog/style): fix word-break style of links
Diffstat (limited to 'services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html')
-rw-r--r--services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html b/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
index 20585686..0ccf38a0 100644
--- a/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
+++ b/services/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
@@ -15,7 +15,7 @@
<meta name="Hatena::Bookmark" content="nocomment">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<title>【Ruby】 then キーワードと case in|REPL: Rest-Eat-Program Loop</title>
- <link rel="stylesheet" href="/style.css?h=f4a12de8fc55ef1668e211e6c6db4ade">
+ <link rel="stylesheet" href="/style.css?h=d2f027875115279303f9fe391e2ef61b">
</head>
<body class="single">
<header class="header">
@@ -90,7 +90,7 @@
</div>
<div class="admonition-content">
<p>
- この記事は Qiita から移植してきたものです。元 URL: <a href="https://qiita.com/nsfisis/items/787a8cf888a304497223" rel="noreferrer" target="_blank">https://qiita.com/nsfisis/items/787a8cf888a304497223</a>
+ この記事は Qiita から移植してきたものです。元 URL: <a class="url" href="https://qiita.com/nsfisis/items/787a8cf888a304497223" rel="noreferrer" target="_blank">https://qiita.com/nsfisis/items/787a8cf888a304497223</a>
</p>
</div>
</div>
@@ -206,7 +206,7 @@
ようやく本題にたどり着いた。来る Ruby 3.0 では <code>case</code> と <code>in</code> キーワードを使ったパターンマッチングの構文が入る予定である。この構文でもパターン部との区切りとして <code>then</code> 等が必要になる。 (現在の) Ruby には formal な形式での文法仕様は存在しないので、yacc の定義ファイルを参照した (yacc の説明は省略)。
</p>
<p>
- <a href="https://github.com/ruby/ruby/blob/221ca0f8281d39f0dfdfe13b2448875384bbf735/parse.y#L3961-L3986" rel="noreferrer" target="_blank">https://github.com/ruby/ruby/blob/221ca0f8281d39f0dfdfe13b2448875384bbf735/parse.y#L3961-L3986</a>
+ <a class="url" href="https://github.com/ruby/ruby/blob/221ca0f8281d39f0dfdfe13b2448875384bbf735/parse.y#L3961-L3986" rel="noreferrer" target="_blank">https://github.com/ruby/ruby/blob/221ca0f8281d39f0dfdfe13b2448875384bbf735/parse.y#L3961-L3986</a>
</p>
<div class="codeblock">
<div class="filename">