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
The current github REST API has a limit of 60 requests per hour. This isn't a lot if you're iterating on development of a batch documentation converter. Authentication raises the limit to 5000/hour.
The core of the required change is to add two items to the headers dictionary in the markdown_to_html_via_github_api function:
The current github REST API has a limit of 60 requests per hour. This isn't a lot if you're iterating on development of a batch documentation converter. Authentication raises the limit to 5000/hour.
The core of the required change is to add two items to the
headers
dictionary in themarkdown_to_html_via_github_api
function:where "github_pat_####" is replaced by a generated personal access token, which would be provided on the command line.
The text was updated successfully, but these errors were encountered: