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
Thanks a lot for your work! I'm using your package, my YAML is
output: xaringan::moon_reader: css: xaringan-themer.css nature: # slideNumberFormat: "%current%" highlightStyle: github highlightLines: true ratio: 16:9 countIncrementalSlides: true
And themer setting is
library(xaringanthemer) style_duo_accent( primary_color = "#1381B0", secondary_color = "#FF961C", inverse_header_color = "#FFFFFF" )
I have some markdown and stargazer tables in my presentation.
I see that every other row gets highlighted in any table.
While I'm okay with it in some tables, I'd like to remove it for the stargazer regression tables.
stargazer
stargazer(lm.1, lm.2, type = "html", single.row = TRUE)
where I want to highlight a 1 certain row and leave others unformatted.
The text was updated successfully, but these errors were encountered:
6444163
I'm not sure how helpful it will be for you, but the table shading can now be turned off by adding the table-unshaded class to the <table> element.
table-unshaded
<table>
Sorry, something went wrong.
No branches or pull requests
Thanks a lot for your work!
I'm using your package, my YAML is
And themer setting is
I have some markdown and stargazer tables in my presentation.
I see that every other row gets highlighted in any table.
While I'm okay with it in some tables, I'd like to remove it for the
stargazer
regression tables.where I want to highlight a 1 certain row and leave others unformatted.
The text was updated successfully, but these errors were encountered: