Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Expected result:
The ability to search the manual/documentation for keywords.
Actual result:
Cannot search the manual/documentation for keywords.
Example:
I see in my bug tracker that I have voted for a task. I have no idea how this was done and would like to rescind the vote. The first step in finding the solution is to RTFM. However, searching for the string "vote" requires searching 30 separate pages.
Analysis of problem:
The manual is split into separate documents. Each of the documents can be searched, but the manual as a whole is not searchable.
Suggested solutions
There are several ways this problem could be solved, such as
Pull request
I believe the simplest solution is to combine all the manual
.md
files into a single.md
file. This offloads the searching task onto a third-party application (web-browser or text editor). I have created a simple shell script which concatenates all the manuals into a single document, in the order they are currently listed on the manual page.Implementing this solution requires several other tasks, primarily how to make the single page manual discoverable. I imagine the main index will need to be updated with a link, as well as each individual manual page.
What are your thoughts on this?