Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

extension

Matches files by their file extension.

Syntax

# Single extension
- extension: pdf

# With dot (also works)
- extension: .pdf

# Multiple extensions
- extension: [pdf, doc, docx]

# Explicit form
- extension:
    extensions: [pdf, doc]

Options

optiontypedescription
extensionsstring/listOne or more extensions to match

Glob support

Extensions support glob patterns:

# Match doc and docx
- extension: "doc*"

# Match any single-character extension
- extension: "?"

Examples

Match PDF files

- extension: pdf

Match image files

- extension: [jpg, jpeg, png, gif, webp]

Match document files

- extension: [pdf, doc, docx, xls, xlsx, ppt, pptx]

Match video files

- extension: [mp4, mkv, avi, mov, wmv]

Match all Microsoft Office formats

- extension: ["doc*", "xls*", "ppt*"]