https://github.com/solidlabresearch/ldn-display
Attempt at spec to define what parts of a notification to use when displaying a notification
https://github.com/solidlabresearch/ldn-display
Last synced: 11 months ago
JSON representation
Attempt at spec to define what parts of a notification to use when displaying a notification
- Host: GitHub
- URL: https://github.com/solidlabresearch/ldn-display
- Owner: SolidLabResearch
- License: mit
- Created: 2023-03-16T14:03:14.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-16T14:16:14.000Z (almost 3 years ago)
- Last Synced: 2025-01-17T07:09:34.525Z (about 1 year ago)
- Language: HTML
- Size: 71.3 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.bikeshed.md
- License: LICENSE
Awesome Lists containing this project
README
# Editing
Requirements are written in [Markdown](https://daringfireball.net/projects/markdown/) and transformed to HTML using the [Bikeshed](https://tabatkins.github.io/bikeshed/) preprocessor.
## Generate HTML
### Using Docker
To view HTML output locally (using a [Docker container](https://github.com/netwerk-digitaal-erfgoed/bikeshed-docker)),
run:
```bash
make spec
```
and open the `index.html` file:
```bash
open index.html
```
Alternatively, to update the HTML every time you make changes to [the source document](index.bs):
```bash
make watch
```
### Without Docker
When Docker is not available on your machine use the `web` target which uses a cloud based
Bikeshed processor
```bash
make web
```
and open the `index.html` file:
```bash
open index.html
```