Skip to content

Commit

Permalink
Test all .md* files
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Jul 16, 2024
1 parent 2b7fc43 commit 578cce9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions link-inspector/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ fn main() -> anyhow::Result<()> {

let arena = Arena::new();
let comrak_options = comrak::ComrakOptions::default();
let mdx_files = glob("../src/**/*.mdx")?;
let md_files = glob("../src/**/*.md*")?;

for entry in mdx_files {
for entry in md_files {
let path = entry?;
println!("📄 Checking file \"{}\"..", path.display());

Expand Down

0 comments on commit 578cce9

Please sign in to comment.