Dear All,
I am using the package Weave.jl in VSCODE (filetype: .jmd). When I write julia code within the julia code block
```julia ```
the code is not indented properly, e.g., if I start a for loop, the code looks like
for i in 1:10 # I am pressing [Enter] here
print(i) # does not get indented automatically
end
whereas it should look like:
for i in 1:10
print(i)
end
When I am writing in .jl files the code gets indented automatically. Does anyone know how to get the code auto-indented in .jmd files?