Entangled 2.0.5
- 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!");
}
```