Skip to content

Commit 38f74f0

Browse files
committed
Basic docsify support.
1 parent 3e309d3 commit 38f74f0

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

Diff for: .nojekyll

Whitespace-only changes.

Diff for: _sidebar.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
- [Home](/)
2+
- [Benchmarks](/#benchmarks)
3+
- [Browser Support](/#pino-in-the-browser)
4+
- [Caveats](/#caveats)
5+
- [The Team](/#the-team)
6+
- [API](/docs/API.md)
7+
- [Constructor](/docs/API.md#constructor)
8+
- [Pretty](/docs/API.md#pretty)
9+
- [Logger](/docs/API.md#logger)
10+
- [Metadata](/docs/API.md#metadata)
11+
- [CLI](/docs/cli.md)
12+
- [Extreme Mode](/docs/extreme.md)
13+
- [Transports](/docs/transports.md)
14+
- [HOWTOs](/docs/howtos.md)
15+
- [Express](/docs/howtos.md#Express)
16+
- [Hapi](/docs/howtos.md#Hapi)
17+
- [Restify](/docs/howtos.md#Restify)
18+
- [Koa](/docs/howtos.md#Koa)
19+
- [debug](/docs/howtos.md#debug)
20+
- [Log Rotation](/docs/howtos.md#rotate)
21+
- [Multiple Files](/docs/howtos.md#multiple)
22+
- [Redaction](/docs/howtos.md#redact)

Diff for: index.html

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Pino - Super fast, all natural JSON logger for Node.js</title>
6+
<meta name="description" content="Super fast, all natural JSON logger for Node.js">
7+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
8+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
9+
</head>
10+
<body>
11+
<div id="app"></div>
12+
</body>
13+
<script>
14+
window.$docsify = {
15+
name: 'pino',
16+
loadSidebar: true,
17+
repo: 'https://github.com/pinojs/pino',
18+
auto2top: true
19+
}
20+
</script>
21+
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
22+
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
23+
</html>

0 commit comments

Comments
 (0)