We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The SlidesCodeHighlighter is not able to paste code with the right format into PowerPoint correctly.
SlidesCodeHighlighter
When I paste code into it, it will become only 1 line.
It because PowerPoint can't treat <pre> tag correctly.
<pre>
I have workaround for this. I learned from Visual Studio Code.
\n
<br>
 
<div>
The text was updated successfully, but these errors were encountered:
Another workaround: Paste to Word first, and from there to PowerPoint. You will probably need to reset line spacing, but otherwise it works.
Sorry, something went wrong.
Hi there, I'm not sure there's anything I can do here without access to PowerPoint - PRs welcome!
No branches or pull requests
The
SlidesCodeHighlighter
is not able to paste code with the right format into PowerPoint correctly.When I paste code into it, it will become only 1 line.
It because PowerPoint can't treat
<pre>
tag correctly.I have workaround for this. I learned from Visual Studio Code.
\n
as<br>
 
.<div>
( don't use<pre>
)The text was updated successfully, but these errors were encountered: