Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 853 Bytes

faq.md

File metadata and controls

32 lines (25 loc) · 853 Bytes
title h1 faq later
FAQ - fflint
Frequently Asked Questions
q
How can I edit just the files with errors?
a
Use `--output=filenames` to get a list of files that failed. ##### Some examples Open the files in an editor (`vi` in this example): ```bash fflint frontmatter --required=title --output=filenames --progress=false "./docs/**/*.md" | xargs vi ``` Optimize every SVG files that has extra namespaces: ```bash fflint svg --namespace --output=filenames --progress=false "**/*.svg" | xargs svgo ```
q a
How can I contact you?
add paid support

{% for entry in page.faq %}

{{entry.q}}

{{entry.a | markdownify}}
{% endfor %}