Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for language-specific formatting #28

Open
terror opened this issue Oct 4, 2024 · 0 comments
Open

Add support for language-specific formatting #28

terror opened this issue Oct 4, 2024 · 0 comments

Comments

@terror
Copy link
Owner

terror commented Oct 4, 2024

If a language tag is present, we currently won't end up going anything, i.e this test will fail:

#[test]
fn language_specific_formatting() -> Result {
  Test::new()?
    .markdown(
      r#"
      ```rust present echo "fn main() { println!(\"Hello, World!\"); }"
      ```
      "#,
    )
    .expected_status(0)
    .expected_stdout(
      r#"
      ```rust present echo "fn main() { println!(\"Hello, World!\"); }"
      fn main() { println!("Hello, World!"); }
      ```
      "#,
    )
    .run()
}

We can make it pass by looking for a subset of keywords as language tags, and then doing the entire parse -> command interpolation flow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant