-
Notifications
You must be signed in to change notification settings - Fork 336
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
Allow for external links in articles page #2028
Comments
We should copy the syntax we used for references. |
The syntax for external reference topics is just Presumably you'll also want to be able to mix and match within a section, e.g. articles:
- title: About recipe Steps
navbar: ~
contents:
- Selecting_Variables
- Ordering
- Dummies
- Roles
- Skipping
- text: Custom Steps
desc: Write a new recipe step for data preprocessing.
href: https://www.tidymodels.org/learn/develop/recipes/ That's going to make parsing rather complicated, since contents can use articles:
- title: About recipe Steps
navbar: ~
contents:
- Selecting_Variables
- Ordering
- Dummies
- Roles
- Skipping
- title: Developer
contents:
- custom
- title: Examples
contents:
- subsampling
- pls
external-articles:
- name: subsampling
text: Subsampling for Class Imbalances
desc: Improve model performance in imbalanced data sets through undersampling or oversampling.
href: https://www.tidymodels.org/learn/models/sub-sampling/
- name: pls
text: Multivariate Analysis using Partial Least Squares
desc: Build and fit a predictive model with more than one outcome.
href: https://www.tidymodels.org/learn/models/pls/
- name: custom
text: Custom Steps
desc: Write a new recipe step for data preprocessing.
href: https://www.tidymodels.org/learn/develop/recipes/ What do you think of that @EmilHvitfeldt? |
that sounds good to me |
In recipes, we have a couple of articles that got moved away from the package itself to other sites. It would be nice if we could link externally from the articles page.
Below is an old
yaml
section that can't be updated to bs5Below is what would be nice if it was possible (imaginary syntax)
The text was updated successfully, but these errors were encountered: