We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[...][]
Originally discussed by @r-kojima & @hachi8833 in #1546 (comment) Issue/PR での対応ありがとうございました! 一旦 Issue としてメモしておきますね 📝
Originally discussed by @r-kojima & @hachi8833 in #1546 (comment)
Issue/PR での対応ありがとうございました! 一旦 Issue としてメモしておきますね 📝
ありがとうございます。不正なリンク抽出用のシェルスクリプトを一応書いていたので、ご参考までに 🙇 ※コードブロック内にある正常なパターンもヒットしちゃったので、結局目視で確認しております 😢 そのままじゃCI等では使え無さそう。。 #!/bin/bash # _siteディレクトリのパス site_directory="_site" # _siteディレクトリ内のHTMLファイルに対して処理 find "$site_directory" -type f -name "*.html" | while read -r file; do # grepで][]が含まれている行を抽出 grep_result=$(grep '\]\[' "$file") # grepの結果があるかチェック if [ -n "$grep_result" ]; then # ファイル名を表示 echo "File: $file" # []][]が含まれている行を表示 echo "$grep_result" # ファイルごとに区切りを表示 echo "----------------------------------------" fi done echo "処理が完了しました。"
ありがとうございます。不正なリンク抽出用のシェルスクリプトを一応書いていたので、ご参考までに 🙇 ※コードブロック内にある正常なパターンもヒットしちゃったので、結局目視で確認しております 😢 そのままじゃCI等では使え無さそう。。
#!/bin/bash # _siteディレクトリのパス site_directory="_site" # _siteディレクトリ内のHTMLファイルに対して処理 find "$site_directory" -type f -name "*.html" | while read -r file; do # grepで][]が含まれている行を抽出 grep_result=$(grep '\]\[' "$file") # grepの結果があるかチェック if [ -n "$grep_result" ]; then # ファイル名を表示 echo "File: $file" # []][]が含まれている行を表示 echo "$grep_result" # ファイルごとに区切りを表示 echo "----------------------------------------" fi done echo "処理が完了しました。"
上記以外のシナリオ例 (この Issue が解決されたら未然に防げてたであろう関連 Issue):
HTML-Proofer のプラグインとしてテストを追加する (Custom Check を書く) のが良さそう!
未踏ジュニアのWebサイトに実装例があるので、プラグインでテストを書くときは次のように検知・エラー通知をすると良さそう 👀💡✨
3.2.2
3.3.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🤔 背景
[...][]
) が存在する[...][]
) を抽出し、 適用数が0となる置換リンク をテストで検知したい🛠 具体例
上記以外のシナリオ例 (この Issue が解決されたら未然に防げてたであろう関連 Issue):
💡 解決案
HTML-Proofer のプラグインとしてテストを追加する (Custom Check を書く) のが良さそう!
未踏ジュニアのWebサイトに実装例があるので、プラグインでテストを書くときは次のように検知・エラー通知をすると良さそう 👀💡✨
3.2.2
to3.3.0
with new tests by HTML Proofer mitou/jr.mitou.org#167The text was updated successfully, but these errors were encountered: