Skip to content

Commit

Permalink
Basic docsify support.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Jul 23, 2017
1 parent 3e309d3 commit 7cbe1c4
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
22 changes: 22 additions & 0 deletions _sidebar.md
@@ -0,0 +1,22 @@
- [Home](/)
- [Benchmarks](/#benchmarks)
- [Browser Support](/#pino-in-the-browser)
- [Caveats](/#caveats)
- [The Team](/#the-team)
- [API](/docs/API.md)
- [Constructor](/docs/API.md#constructor)
- [Pretty](/docs/API.md#pretty)
- [Logger](/docs/API.md#logger)
- [Metadata](/docs/API.md#metadata)
- [CLI](/docs/cli.md)
- [Extreme Mode](/docs/extreme.md)
- [Transports](/docs/transports.md)
- [HOWTOs](/docs/howtos.md)
- [Express](/docs/howtos.md#Express)
- [Hapi](/docs/howtos.md#Hapi)
- [Restify](/docs/howtos.md#Restify)
- [Koa](/docs/howtos.md#Koa)
- [debug](/docs/howtos.md#debug)
- [Log Rotation](/docs/howtos.md#rotate)
- [Multiple Files](/docs/howtos.md#multiple)
- [Redaction](/docs/howtos.md#redact)
23 changes: 23 additions & 0 deletions index.html
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>fastify - Fast and low overhead web framework, for Node.js</title>
<meta name="description" content="Super fast, all natural JSON logger for Node.js">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
</head>
<body>
<div id="app"></div>
</body>
<script>
window.$docsify = {
name: 'pino',
loadSidebar: true,
repo: 'https://github.com/pinojs/pino',
auto2top: true
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
</html>

0 comments on commit 7cbe1c4

Please sign in to comment.