Skip to content

Commit

Permalink
add markdownlint
Browse files Browse the repository at this point in the history
  • Loading branch information
qq542vev committed Jul 26, 2023
1 parent e1bad31 commit 32d67e2
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# MD013/line-length - Line length
MD013: false
3 changes: 1 addition & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ファイルのインポート")
42 changes: 42 additions & 0 deletions spec/markdown_spec.sh
Original file line number Diff line number Diff line change
@@ -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 - <qq542vev at https://purl.org/meta/me/>
## version - 1.0.0
## date - 2023-07-26
## since - 2023-07-26
## copyright - Copyright (C) 2023-2023 qq542vev. Some rights reserved.
## license - <CC-BY at https://creativecommons.org/licenses/by/4.0/>
## package - convert-it-passport
##
## See Also:
##
## * <Project homepage at https://github.com/qq542vev/convert-it-passport>
## * <Bag report at https://github.com/qq542vev/convert-it-passport/issues>

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

0 comments on commit 32d67e2

Please sign in to comment.