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
My emacs buffer looks like this:
I grab it using ox-clip and paste it to google docs, and it looks ugly:
After I remove extra line spacing in gdocs, it looks a bit better:
But still the best way is to have an option to ignore the background color. I think the right function to change is: https://github.com/hniksic/emacs-htmlize/blob/master/htmlize.el#L947
The text was updated successfully, but these errors were encountered:
I currently do it with defadvice
defadvice
(setq-default htmlize-ignore-background t) ; ignore background color (use-package htmlize :config (defadvice htmlize-face-background (around htmlize-ignore-background activate) "Ignore background if htmlize-ignore-background is set" (unless htmlize-ignore-background ad-do-it)))
Sorry, something went wrong.
No branches or pull requests
My emacs buffer looks like this:
I grab it using ox-clip and paste it to google docs, and it looks ugly:
After I remove extra line spacing in gdocs, it looks a bit better:
But still the best way is to have an option to ignore the background color.
I think the right function to change is:
https://github.com/hniksic/emacs-htmlize/blob/master/htmlize.el#L947
The text was updated successfully, but these errors were encountered: