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
When a user clicks Create issue on a doc page, Docsy should auto-include the relevant doc URL (or at least the path) in the created issue. Currently, Docsy includes the page title as the title of the issue, but nothing in the page body.
The Feedback widget should also include the URL of the page when a user creates an issue based on their feedback.
I got part of the way there by editing the file /docsy/layouts/partials/page-meta-links.html and adding the the issue body URL param with a value of .Permalink (or .Path) in this line:
However, there's probably further testing required. For example, should we use .Path or .Permalink. Not all sites have their base URL set to include the domain. For example, in the Kubeflow site, our base URL is set to just a /. This affects the value of the .Path.
The text was updated successfully, but these errors were encountered:
When a user clicks Create issue on a doc page, Docsy should auto-include the relevant doc URL (or at least the path) in the created issue. Currently, Docsy includes the page title as the title of the issue, but nothing in the page body.
The Feedback widget should also include the URL of the page when a user creates an issue based on their feedback.
I got part of the way there by editing the file
/docsy/layouts/partials/page-meta-links.html
and adding the the issuebody
URL param with a value of.Permalink
(or.Path
) in this line:However, there's probably further testing required. For example, should we use
.Path
or.Permalink
. Not all sites have their base URL set to include the domain. For example, in the Kubeflow site, our base URL is set to just a/
. This affects the value of the.Path
.The text was updated successfully, but these errors were encountered: