Replies: 2 comments
-
I realize this maybe off topic since it's an extension and not part of neorg itself . I just really would love these features, so if anyone would also like this and would like to help or have ideas on how to help implement any of them. I would love to hear more from you. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In order to make this a lot more like org mode. I would love to be able to in the header be able to specify a file.
Then, in the
@code javascript
@EnD
it will write this to the file, so we can write the docs and the file at the same time
potentially
To support multiple files and filetypes it may be interesting to add an additional optional second argument to the code block
@code javascript vite.config.js
import defineConfig
export default {
server: {
port:3000
}
}
@EnD
then since I am parsing this anyway. It shouldn't be hard to add this Repl
and just like in org mode we could have output directly below the code block
`
@code
x=5
print(f"{x = }")
@EnD
@output
x = 5
@EnD
Beta Was this translation helpful? Give feedback.
All reactions