You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, print.R generates a random name for the wrapping div for gt tables (e.g. <div id="joisdfjkdf">). This is nice for uniqueness in HTML, but it causes issues with version control, since the table ID changes often (forcing new changes in git).
Right now, my solution is to use set.seed() before any gt() stuff, and that's working, but it might be nice to have an argument to gt() or something that disables the random id generation and allows users to supply their own.
The text was updated successfully, but these errors were encountered:
Right now, print.R generates a random name for the wrapping div for gt tables (e.g.
<div id="joisdfjkdf">
). This is nice for uniqueness in HTML, but it causes issues with version control, since the table ID changes often (forcing new changes in git).Right now, my solution is to use
set.seed()
before anygt()
stuff, and that's working, but it might be nice to have an argument togt()
or something that disables the random id generation and allows users to supply their own.The text was updated successfully, but these errors were encountered: