diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 0000000..efb8f1c --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,2 @@ +# MD013/line-length - Line length +MD013: false diff --git a/readme.md b/readme.md index 4eb4af7..7521910 100644 --- a/readme.md +++ b/readme.md @@ -31,7 +31,6 @@ プログラムが正常に動作するためには [POSIX Utilities](https://pubs.opengroup.org/onlinepubs/9699919799/idx/utilities.html), [GNU Wget](https://www.gnu.org/software/wget/), [XMLStarlet](https://xmlstar.sourceforge.net/) がご使用のコンピューターにインストールされている必要があります。 -ディレクトリ内にある `collection.colpkg` を Anki -にインポートします。(注意: 現在のデッキコレクションが全て新たなものに置き換えられます。)細分化された空のデッキが取り込まれますので、各デッキ内に先程作成されたCSVファイルを読み込んでいきます。カードタイプはそれぞれ適切なものを選択してください。 +ディレクトリ内にある `collection.colpkg` を Anki にインポートします。(注意: 現在のデッキコレクションが全て新たなものに置き換えられます。)細分化された空のデッキが取り込まれますので、各デッキ内に先程作成されたCSVファイルを読み込んでいきます。カードタイプはそれぞれ適切なものを選択してください。 [![ファイルの読み込み](images/thumbnails/anki-menu-read.png)](images/anki-menu-read.png "ファイルの読み込み") [![CSV ファイルのインポート](images/thumbnails/anki-read-option.png)](images/anki-read-option.png "CSV ファイルのインポート") diff --git a/spec/markdown_spec.sh b/spec/markdown_spec.sh new file mode 100755 index 0000000..184ae53 --- /dev/null +++ b/spec/markdown_spec.sh @@ -0,0 +1,42 @@ +#!/usr/bin/env sh + +### File: markdown_spec.sh +## +## Shell ファイルの共通オプションの検証。 +## +## Usage: +## +## ------ Text ------ +## shellspec markdown_spec.sh +## ------------------ +## +## Metadata: +## +## id - f41a651c-f50b-4775-9d77-09e60508bdb4 +## author - +## version - 1.0.0 +## date - 2023-07-26 +## since - 2023-07-26 +## copyright - Copyright (C) 2023-2023 qq542vev. Some rights reserved. +## license - +## package - convert-it-passport +## +## See Also: +## +## * +## * + +eval "$(shellspec - -c) exit 1" + +% TESTFILES: 'readme.md' + +Describe 'markdownlint による検証' + Parameters:value ${TESTFILES} + + Example "markdownlint -- ${1}" + When call markdownlint -- "${1}" + The length of stdout should equal 0 + The length of stderr should equal 0 + The status should equal 0 + End +End