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
Is your feature request related to a problem? Please describe.
As an FAQ author, I may want to add links for some of the answers in the FAQ page, or format some of the text, however there are currently no mechanisms for that to happen
Describe the solution you'd like
I would like the FAQ to become a markdown document, similar to CSSC's implementation (although I would much prefer headings instead of pipes to delimit questions and answers, e.g.,
the answer value in the JSON file to be pared differently such that answer can parse markdown syntax
I think a md document would be more readable in the long run however there are still questions on where to place the document, whether the FAQ deserves a separate page after this change, etc
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
I do have an idea that can help you implement this with minimal code change. Precisely this can be done in two steps:
Update the src/data/faq.json file to contain text data in the markdown format. Be mindful that you will have to escape special characters like quotes (")
Update the src/app/resources/page.jsx file to wrap the FAQs in a markdown div: <div class="name" markdown="1">
great idea!! but i'm not sure if we current have packages installed which have support for markdown divs. definitely will need to think about it though :)
Is your feature request related to a problem? Please describe.
As an FAQ author, I may want to add links for some of the answers in the FAQ page, or format some of the text, however there are currently no mechanisms for that to happen
Describe the solution you'd like
I would like the FAQ to become a markdown document, similar to CSSC's implementation (although I would much prefer headings instead of pipes to delimit questions and answers, e.g.,
)
Describe alternatives you've considered
answer
value in the JSON file to be pared differently such thatanswer
can parse markdown syntaxI think a md document would be more readable in the long run however there are still questions on where to place the document, whether the FAQ deserves a separate page after this change, etc
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: