-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
add backticks around regex examples in docstrings #223
Conversation
@axl1313 Thanks for fixing sorry about breaking it under a tight deadline! Actually we don't want any of this new code to show up in the docs on help.cleanlab.ai yet, it's not ready for public consumption, only select customers where our team is available to support them. Could you help us ensure it's not going to show up on help.cleanlab.ai documentation for now? I verified the docs for this didnt show up and thought we were good, but seems like that's just cause the build was broken... |
@axl1313 Also would be good to know how you determine the help.cleanlab.ai build is broken, if you can add all of ML team to that notification system, as well as Matt Turk. Thanks! |
Ah okay. Currently, we automatically add documentation for everything inside of the |
PR up here https://github.com/cleanlab/cleanlab-studio-docs/pull/462 |
I get notifications when the "Build and Deploy Docs" Github action fails for deployments that are triggered from a new release of |
ah no worries then, probably not worth actual work investment right now |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Built locally and confirmed docs do not show up on website.
Co-authored-by: Ulyana <[email protected]>
Description
The build for help.cleanlab.ai is currently broken since there are some places in the docstrings for the data enrichment utils that contain unescaped angled brackets (<>). Since docusaurus converts pages to HTML, these are interpreted as unclosed JSX tags. Adding backticks around these fixes the build issue (and also makes the formatting for these regex examples nicer imo).
How to test
cleanlab-studio
pip install -Ue .
cleanlab-studio-docs
, runmake update-notebooks && make update-api-reference && make docs
. Check that building docs succeeds. Navigate tolocalhost:3000
and check that API reference docs for data enrichment utils look correct.