Skip to content

Commit 1bb5a38

Browse files
Merge pull request #65 from sisimai/do-not-use-data-href
Do not use data-href attribute for a hyper link
2 parents a7de914 + 4c560a2 commit 1bb5a38

File tree

6 files changed

+391
-264
lines changed

6 files changed

+391
-264
lines changed

en/docs/index.html

Lines changed: 117 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -142,53 +142,81 @@ <h2 class = 'in-desc'>How To Use {{ site.html.ss }} and Specifications</h2>
142142
<div class = 'table-responsive'>
143143
<table class = 'table table-hover table-condensed link-index'>
144144
<tbody>
145-
<tr data-href = '/en/release/'>
145+
<tr>
146146
<th><i class = 'fa fa-star'></i></th>
147-
<td class = 'ltext'><strong>Release Information</strong></td>
147+
<td class = 'ltext'>
148+
<a href = '/en/release/' class = 'cell-link'>
149+
<strong>Release Information</strong>
150+
</a>
151+
</td>
148152
<td>Release Notes of {{ site.html.ss }}</td>
149153
</tr>
150-
<tr data-href = '/en/start/'>
154+
<tr>
151155
<th><i class = 'fa fa-play'></i></th>
152-
<td class = 'ltext'><strong>Get Started</strong></td>
156+
<td class = 'ltext'>
157+
<a href = '/en/start/' class = 'cell-link'>
158+
<strong>Get Started</strong>
159+
</a>
160+
</td>
153161
<td>Environment, How To Install, and Basic Usage</td>
154162
</tr>
155-
<tr data-href = '/en/usage/'>
163+
<tr>
156164
<th><i class = 'fa fa-code'></i></th>
157-
<td><strong>How To Decode</strong></td>
165+
<td>
166+
<a href = '/en/usage/' class = 'cell-link'>
167+
<strong>How To Decode</strong>
168+
</a>
169+
</td>
158170
<td>Reading from STDIN, Decoding Options, and the Callback Feature</td>
159171
</tr>
160172

161-
<tr data-href = '/en/reason/'>
173+
<tr>
162174
<th><i class = 'fa fa-exclamation-triangle'></i></th>
163-
<td><strong>Bounce Reasons</strong></td>
175+
<td>
176+
<a href = '/en/reason/' class = 'cell-link'>
177+
<strong>Bounce Reasons</strong>
178+
</a>
179+
</td>
164180
<td>The bounce reason list {{ site.html.ss }} can detect</td>
165181
</tr>
166182

167-
<tr data-href = '/en/data/'>
183+
<tr>
168184
<th><i class = 'fa fa-list'></i></th>
169-
<td><strong>Data Structure</strong></td>
185+
<td>
186+
<a href = '/en/data/' class = 'cell-link'>
187+
<strong>Data Structure</strong>
188+
</a>
189+
</td>
170190
<td>List of data structures and fields generated by {{ site.html.ss }}</td>
171191
</tr>
172192

173-
<tr data-href = '/en/engine/'>
193+
<tr>
174194
<th><i class = 'fa fa-cogs'></i></th>
175-
<td><strong>Decoding Engines</strong></td>
195+
<td>
196+
<a href = '/en/engine/' class = 'cell-link'>
197+
<strong>Decoding Engines</strong>
198+
</a>
199+
</td>
176200
<td>List of decoding modules in {{ site.html.ss }}</td>
177201
</tr>
178202

179-
<tr data-href = '/en/diff/'>
180-
<th><i class = 'fa fa-gavel'></i></th>
181-
<td><strong>Differences with {{ site.html.ss }} 4</strong></td>
203+
<tr>
204+
<th><i class = 'fa fa-plus-minus'></i></th>
182205
<td>
183-
Differences between version 5 and version 4 in {{ site.html.ss }}
206+
<a href = '/en/diff/' class = 'cell-link'>
207+
<strong>Differences with {{ site.html.ss }} 4</strong>
208+
</a>
184209
</td>
210+
<td>Differences between version 5 and version 4 in {{ site.html.ss }}</td>
185211
</tr>
186-
<tr data-href = '/en/diff/between-sisimai-and-bouncehammer.html'>
212+
<tr>
187213
<th><i class = 'fa fa-gavel'></i></th>
188-
<td><strong>Differences with {{ site.html.bh }}</strong></td>
189214
<td>
190-
Differences between {{ site.html.ss }} and {{ site.html.bh }}
215+
<a href = '/en/diff/between-sisimai-and-bouncehammer.html' class = 'cell-link'>
216+
<strong>Differences with {{ site.html.bh }}</strong>
217+
</a>
191218
</td>
219+
<td>Differences between {{ site.html.ss }} and {{ site.html.bh }}</td>
192220
</tr>
193221
</tbody>
194222
</table>
@@ -280,75 +308,117 @@ <h2 class = 'in-desc'>Related Blogs</h2>
280308
<div class = 'table-responsive'>
281309
<table class = 'table table-hover table-condensed link-index'>
282310
<tbody>
283-
<tr data-href = 'https://qiita.com/revsystem/items/52d204bd9dada9cb9bc4'>
311+
<tr>
284312
<th><i class = 'fa fa-q'></i></th>
285313
<td>2023/05/20</td>
286-
<td>Sisitoとsisimaiでバウンスメールの解析、集計する #sisimai - Qiita</td>
314+
<td>
315+
<a href = 'https://qiita.com/revsystem/items/52d204bd9dada9cb9bc4' class = 'cell-link' target = 'new'>
316+
Sisitoとsisimaiでバウンスメールの解析、集計する #sisimai - Qiita
317+
</a>
318+
</td>
287319
</tr>
288-
<tr data-href = 'https://zenn.dev/itsuo/articles/b810ac28b31ffc'>
320+
<tr>
289321
<th><i class = 'fa fa-z'></i></th>
290322
<td>2021/12/22</td>
291-
<td>SendGridからbounceメールを取得して、sisimaiで解析してみる</td>
323+
<td>
324+
<a href = 'https://zenn.dev/itsuo/articles/b810ac28b31ffc' class = 'cell-link' target = 'new'>
325+
SendGridからbounceメールを取得して、sisimaiで解析してみる
326+
</a>
327+
</td>
292328
</tr>
293-
<tr data-href = 'https://realsender.com/for-email-broadcasters/bouncehandler-app/'>
329+
<tr>
294330
<th><i class = 'fa fa-r'></i></th>
295331
<td>2021/10/30</td>
296-
<td>bouncehandler app :: RealSender</td>
332+
<td>
333+
<a href = 'https://realsender.com/for-email-broadcasters/bouncehandler-app/' class = 'cell-link' target = 'new'>
334+
bouncehandler app :: RealSender
335+
</a>
336+
</td>
297337
</tr>
298-
<tr data-href = 'https://blogs.pcsoft.fr/fr/emailing-application-windev-tache-site-webdev-eviter-passer-liste-noire-voir-envois-rejetes/281474976710985/read.awp'>
338+
<tr>
299339
<th><i class = 'fa fa-p'></i></th>
300340
<td>2021/07/21</td>
301341
<td>
302-
Emailing depuis une application WINDEV ou une tâche d'un site WEBDEV,
303-
comment éviter de passer en liste noire et de voir les envois rejetés ?
304-
- PC SOFT - Blogs
342+
<a href = 'https://blogs.pcsoft.fr/fr/emailing-application-windev-tache-site-webdev-eviter-passer-liste-noire-voir-envois-rejetes/281474976710985/read.awp' class = 'cell-link' target = 'new'>
343+
Emailing depuis une application WINDEV ou une tâche d'un site WEBDEV,
344+
comment éviter de passer en liste noire et de voir les envois rejetés ?
345+
- PC SOFT - Blogs
346+
</a>
305347
</td>
306348
</tr>
307-
<tr data-href = 'https://www.mindbaz.com/technologie-email/bounces-email/'>
349+
<tr>
308350
<th><i class = 'fa fa-m'></i></th>
309351
<td>2021/03/30</td>
310-
<td>Traitement des bounces email - Mindbaz</td>
352+
<td>
353+
<a href = 'https://www.mindbaz.com/technologie-email/bounces-email/' class = 'cell-link' target = 'new'>
354+
Traitement des bounces email - Mindbaz
355+
</a>
356+
</td>
311357
</tr>
312-
<tr data-href = 'https://blog.hokkai7go.jp/entry/2020/07/14/145454'>
358+
<tr>
313359
<th><i class = 'fa fa-h'></i></th>
314360
<td>2020/07/14</td>
315-
<td>LambdaでSisimaiを動かしてバウンスメールを解析するテスト - 実はhokkai7go</td>
361+
<td>
362+
<a href = 'https://blog.hokkai7go.jp/entry/2020/07/14/145454' class = 'cell-link' target = 'new'>
363+
LambdaでSisimaiを動かしてバウンスメールを解析するテスト - 実はhokkai7go
364+
</a>
365+
</td>
316366
</tr>
317-
<tr data-href = 'https://heartbeats.jp/hbblog/2017/12/sisimai.html'>
367+
<tr>
318368
<th><i class = 'fa fa-h'></i></th>
319369
<td>2017/12/19</td>
320370
<td>
321-
バウンスメール解析ライブラリSisimaiの出力からバウンスメールの集計と通知を行う
322-
- インフラエンジニアway - Powered by HEARTBEATS
371+
<a href = 'https://heartbeats.jp/hbblog/2017/12/sisimai.html' class = 'cell-link' target = 'new'>
372+
バウンスメール解析ライブラリSisimaiの出力からバウンスメールの集計と通知を行う
373+
- インフラエンジニアway - Powered by HEARTBEATS
374+
</a>
323375
</td>
324376
</tr>
325-
<tr data-href = 'https://techlife.cookpad.com/entry/2017/05/15/000000'>
377+
<tr>
326378
<th><i class = 'fa fa-c'></i></th>
327379
<td>2017/05/15</td>
328-
<td>Sisimaiを使ったバウンスメールの管理 - クックパッド開発者ブログ</td>
380+
<td>
381+
<a href = 'https://techlife.cookpad.com/entry/2017/05/15/000000' class = 'cell-link' target = 'new'>
382+
Sisimaiを使ったバウンスメールの管理 - クックパッド開発者ブログ
383+
</a>
384+
</td>
329385
</tr>
330-
<tr data-href = 'https://techblog.raccoon.ne.jp/archives/49496190.html'>
386+
<tr>
331387
<th><i class = 'fa fa-r'></i></th>
332388
<td>2016/09/21</td>
333389
<td>
334-
Sisimaiによるバウンスメール解析の自動化 | Raccoon Tech Blog
335-
[株式会社ラクーンホールディングス 技術戦略部ブログ]
390+
<a href = 'https://techblog.raccoon.ne.jp/archives/49496190.html' class = 'cell-link' target = 'new'>
391+
Sisimaiによるバウンスメール解析の自動化 | Raccoon Tech Blog
392+
[株式会社ラクーンホールディングス 技術戦略部ブログ]
393+
</a>
336394
</td>
337395
</tr>
338-
<tr data-href = 'https://blog.ytnobody.net/entry/2016-08-17-00-47-42.html'>
396+
<tr>
339397
<th><i class = 'fa fa-y'></i></th>
340398
<td>2016/08/17</td>
341-
<td>エラーで帰ってきてしまったメールの解析 | All Your Bugs Are Belong To Ass</td>
399+
<td>
400+
<a href = 'https://blog.ytnobody.net/entry/2016-08-17-00-47-42.html' class = 'cell-link' target = 'new'>
401+
エラーで帰ってきてしまったメールの解析 | All Your Bugs Are Belong To Ass
402+
</a>
403+
</td>
342404
</tr>
343-
<tr data-href = 'https://qiita.com/taku1201/items/0afae3dd90507a688e3e'>
405+
<tr>
344406
<th><i class = 'fa fa-q'></i></th>
345407
<td>2016/03/26</td>
346-
<td>Sisimaiでバウンスメールを解析してみる #Ruby - Qiita</td>
408+
<td>
409+
<a href = 'https://qiita.com/taku1201/items/0afae3dd90507a688e3e' class = 'cell-link' target = 'new'>
410+
Sisimaiでバウンスメールを解析してみる #Ruby - Qiita
411+
</a>
412+
</td>
347413
</tr>
348-
<tr data-href = 'https://github.com/sisimai/sisimai.github.io/pulls'>
414+
<tr>
349415
<th><i class = 'fa fa-github'></i></th>
350416
<td></td>
351-
<td>Please submit a pull request if you known any other blogs.</td>
417+
<td>
418+
<a href = 'https://github.com/sisimai/sisimai.github.io/pulls' class = 'cell-link' target = 'new'>
419+
Please submit a pull request if you known any other blogs.
420+
</a>
421+
</td>
352422
</tr>
353423
</tbody>
354424
</table>

0 commit comments

Comments
 (0)