summaryrefslogtreecommitdiff
path: root/Applications/Help
AgeCommit message (Collapse)Author
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-06Revert "LibHTML: Rename parse_html() => parse_html_document()"Andreas Kling
This reverts commit f6439789db9c02216baabb197017c7a79a63ba04. Oops, I committed unrelated changes here, let me clean that up..
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-10-09LibHTML: Rename Document::normalize() to fixup() and always do itAndreas Kling
Node.normalize() is a standard DOM API that coalesces Text nodes. To avoid clashing with that, rename it to fixup(). This patch also makes it happen automagically as part of parsing.
2019-10-05LibGUI: Add back/forward actions to GCommonActionsAndreas Kling
2019-10-05LibHTML: Make StyleResolver responsible for loading the default styleAndreas Kling
Instead of HtmlView clients having to worry about parsing and loading the default CSS, just take care of it inside StyleResolver. The default style is automatically inserted into the stylesheet list, at the very start, so everyone else gets a chance to override it.
2019-10-03Help: Follow clicked linksSergey Bugaev
This also adds a toolbar and a menu which allow you to navigate back and forth through history ^)
2019-09-30Help+man.md: Add man sectionsLarkin Nickle
Also correct minor formatting mistake in TelnetServer.md.
2019-09-28Help: Don't crash on startup when non-md man pages are present :^)Andreas Kling
2019-09-28Applications: Add a new Help appSergey Bugaev
This is a neat simple app that can display the Serenity manual ^)