Validate quiz markdown file format
Validates quiz markdown file format and shows statistics. Use this to check for common errors like mixed answer types, missing correct answers, or formatting issues before exporting.
/plugin marketplace add dnvriend/markdown-quiz-exporter-tool/plugin install markdown-quiz-exporter-tool@markdown-quiz-exporter-toolinput.mdValidate quiz markdown file format and show statistics.
markdown-quiz-exporter-tool validate INPUT.md [OPTIONS]
INPUT.md: Quiz markdown file to validate (required)-v/-vv/-vvv: Verbosity (INFO/DEBUG/TRACE)# Basic validation
markdown-quiz-exporter-tool validate quiz.md
# With verbose output for debugging
markdown-quiz-exporter-tool validate quiz.md -vv
Shows statistics about the quiz:
Shows detailed error information:
Mixed answer types:
Error at line 5: Cannot mix ( ) and [ ] formats in same question
Fix: Use consistent format - either ( ) for single choice OR [ ] for multiple choice
No correct answer:
Error at line 3: No correct answer marked. Use (X) or [X]
Fix: Mark at least one answer with (X) or [X]
No answers found:
Error at line 2: No answers found. Expected format: '- (X) text'
Fix: Add answer options in format - (X) answer or - [X] answer
No question text:
Error at line 1: No question text found
Fix: Add question text before answer options