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
It would be great to have a helper function e.g. everything() which could be used as a catch-all for anything not otherwise captured by the reference index. At present, it throws a warning (or error in an action) if a function is missing from the reference. I would ideally have a yml as follows.
url: ~template:
bootstrap: 5reference:
- title: Some functionsdesc: Functions which do `a`
- contents:
- starts_with("do_a")
- title: Some other functionsdesc: Functions which do `b`
- contents:
- starts_with("do_b")
- title: Everything else
- desc: Functions which don't fall into the other categories
- contents:
- everything()
The text was updated successfully, but these errors were encountered:
It would be great to have a helper function e.g.
everything()
which could be used as a catch-all for anything not otherwise captured by the reference index. At present, it throws a warning (or error in an action) if a function is missing from the reference. I would ideally have a yml as follows.The text was updated successfully, but these errors were encountered: