Replies: 2 comments 4 replies
-
Note that I tried something simple which does not work.
Then one could produce html code from myst code in a cell with for example
This produces the right html but I guess one would need to somehow inject myst css in the html file of the presentation. |
Beta Was this translation helpful? Give feedback.
-
Heya, ping me if I forget to respond fully (as a bit short on time now 😅), but one thing I was interested in recently was: https://marpit.marp.app/. I think this may be a good "syntax" basis to crib from. I guess the main issue is integration with docutils/sphinx. There is no real slide output formats available for those, so if you wanted them I guess you would need to write your own "output translator" (probably subclassing from the HTML one) |
Beta Was this translation helpful? Give feedback.
-
I write reveal.js presentations with jupyter-lab and
jupyter-nbconvert --to slides
.I would love to be able to use myst syntax for these presentations but I'm not able to use it with jupyter-nbconvert. Could it work?
For some cases in these presentations, I need to write simple html. I see few features that are very important to produce nice presentations. It should be easy to:
<div style="float:left;width:48%">
)The problem with doing this with html is that (i) the syntax is not as nice as myst and (ii) I can't directly mix html and markdown (for example add a markdown list in a div used to have a column).
I don't know well what can be done now with myst, but it seems to me that the language is powerful enough to describe such things.
So I feel that the jupyter and myst technologies could be used together to produce a very good tool to write html presentations. But I can't find in the documentations of the different projects what is doable now and I don't know if this could be a goal for these projects to be used for this purpose (writing nice web slides).
Beta Was this translation helpful? Give feedback.
All reactions