mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 12:45:07 +00:00

This commit adds manpages for About(1), AnalogClock(1), Assistant(1), Browser(1), Calculator(1), and Calendar(1).
34 lines
602 B
Markdown
34 lines
602 B
Markdown
## Name
|
|
|
|
 Browser - Serenity WWW Browser
|
|
|
|
[Open](file:///bin/Browser)
|
|
|
|
## Synopsis
|
|
|
|
```**sh
|
|
$ Browser
|
|
$ Browser [options]
|
|
$ Browser [url]
|
|
```
|
|
|
|
## Description
|
|
|
|
`Browser` is an application used to view the World Wide Web. It is built on top of Serenity's own `LibWeb` and `LibJS` engines, allowing it to render HTML, CSS, and JavaScript.
|
|
|
|
## Options
|
|
|
|
* `--help`: Display help message and exit
|
|
* `--version`: Display version number and exit
|
|
|
|
## Arguments
|
|
|
|
* `url`: URL to open
|
|
|
|
## Examples
|
|
|
|
```**sh
|
|
$ Browser
|
|
$ Browser --help
|
|
$ Browser https://serenityos.org/
|
|
```
|