Skip to content

Entangled 2.0.5

Compare
Choose a tag to compare
@jhidding jhidding released this 09 Jul 11:23
· 30 commits to main since this release
  • Fix issue for explicitly assigning a code block id to a block that also has a file target. The following should now work:
``` {.rust file=src/main.rs #main}
// this is the main file
```

``` {.rust #main}
fn main() {
  println!("Hello, World!");
}
```