All Projects → amiroff → NextBook

amiroff / NextBook

Licence: MIT license
NextBook is quick and easy way to build technical books or documentation with markdown that run blazingly fast.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to NextBook

BooGi
Generate GitBook-like modern docs/tutorial websites using Gatsby
Stars: ✭ 117 (-23.53%)
Mutual labels:  gitbook, documentation-tool, mdx, documentation-generator
Gatsby Gitbook Starter
Generate GitBook style modern docs/tutorial websites using Gatsby + MDX
Stars: ✭ 700 (+357.52%)
Mutual labels:  gitbook, mdx, documentation-generator
Dart
DART is a test documentation tool created by the Lockheed Martin Red Team to document and report on penetration tests, especially in isolated network environments.
Stars: ✭ 207 (+35.29%)
Mutual labels:  documentation-tool, documentation-generator
Ford
Automatically generates FORtran Documentation from comments within the code.
Stars: ✭ 245 (+60.13%)
Mutual labels:  documentation-tool, documentation-generator
Fusuma
✍️Fusuma makes slides with Markdown easily.
Stars: ✭ 5,033 (+3189.54%)
Mutual labels:  seo, mdx
Documentalist
📝 A sort-of-static site generator optimized for living documentation of software projects
Stars: ✭ 130 (-15.03%)
Mutual labels:  documentation-tool, documentation-generator
Nbdev template
Template for nbdev projects
Stars: ✭ 161 (+5.23%)
Mutual labels:  documentation-tool, documentation-generator
numpydoc.el
Insert NumPy style docstrings in Python functions.
Stars: ✭ 33 (-78.43%)
Mutual labels:  documentation-tool, documentation-generator
Graphdoc
Static page generator for documenting GraphQL Schema
Stars: ✭ 1,218 (+696.08%)
Mutual labels:  documentation-tool, documentation-generator
doxybook2
Doxygen XML to Markdown (or JSON)
Stars: ✭ 140 (-8.5%)
Mutual labels:  gitbook, documentation-generator
Docute
📚 Effortless documentation, done right.
Stars: ✭ 3,575 (+2236.6%)
Mutual labels:  gitbook, documentation-tool
Naturaldocs
Natural Docs source code documentation system
Stars: ✭ 106 (-30.72%)
Mutual labels:  documentation-tool, documentation-generator
Dox
Haxe documentation generator.
Stars: ✭ 98 (-35.95%)
Mutual labels:  documentation-tool, documentation-generator
Redoc
📘 OpenAPI/Swagger-generated API Reference Documentation
Stars: ✭ 15,935 (+10315.03%)
Mutual labels:  documentation-tool, documentation-generator
Drf Autodocs
Ultimately automated DRF documentation rendering(UNMAINTAINED)
Stars: ✭ 82 (-46.41%)
Mutual labels:  documentation-tool, documentation-generator
Nbdev
Create delightful python projects using Jupyter Notebooks
Stars: ✭ 3,061 (+1900.65%)
Mutual labels:  documentation-tool, documentation-generator
Toast Ui.doc
Stars: ✭ 71 (-53.59%)
Mutual labels:  documentation-tool, documentation-generator
Jsdoc To Markdown
Generate markdown documentation from jsdoc-annotated javascript
Stars: ✭ 1,199 (+683.66%)
Mutual labels:  documentation-tool, documentation-generator
soldoc
A solidity documentation generator, based in NatSpec format. 📃 with standalone HTML, pdf, gitbook and docsify output ✏️ just plug and play.
Stars: ✭ 54 (-64.71%)
Mutual labels:  gitbook, documentation-tool
Hugo Handbook
Building static website with hugo - https://jimmysong.io/hugo-handbook
Stars: ✭ 58 (-62.09%)
Mutual labels:  gitbook, seo

NextBook Screenshot

Build

NextBook is quick and easy way to buid technical books or documentation that support modern standards and run blazingly fast. It works by compiling markdown and MDX to static pages. This way, first content render on user's device is near instant.

NextBook makes writing technical docs stupid simple while keeping featureset minimal but open for further extension.

Primary Features 🧿

  • 💅 Good looking, simple and readable UI based on tailwindcss including dark mode and auto-centered layout,
  • 🌎 Great SEO out of the box,
  • 📱 Mobile & printer friendly,
  • 🚀 Single page application with pre-fetching,
  • 🧾 Easy content creation with markdown and MDX support,
  • 💻 Something more than what basic fenced code offers. Like line highlighting, linking to source and copying to clipboard,
  • 🤓 Familiar Git workflow and collaboration,
  • ⌨︎ Keyboard shortcuts for frequently used actions (theme change, page navigation),
  • 🔎 In-page optional table of contents with scroolspy,
  • © You own your data, code is the data. Committing to repository and seeing results in the simplest form,
  • 🏎 Fast to get started, just one command for up & running locally,
  • 🎊 One click (or push) deployment,
  • 🛠 Unlimited dynamic features can be added with MDX,
  • ⚙︎ Customisable, extensible and simple codebase,
  • Built on open-source,
  • 👍 And many more small details...

With the advantages of Next.js and React anything fancy (grading, level switching...) can be added along the way.

What's New In NextBook 3.0?

This release contains major speed improvements and backwards incompatible changes. Most of these come from MDX2 removing some functionality and other old libraries still not supporting ES modules.

  • Migrated to next-mdx-remote v.4 which now uses MDX2. This has some speed improvements and stricter MDX syntax checking. See MDX2
  • Replaced some custom incompatible markdown plugins with MDX counterparts. These are:
    • Subscript: was ~, became <sub> tag.
    • Superscript: was ^, became <sup> tag.
    • Mark (higlight): was ==, became <mark> tag.
    • Changed syntax for Accordion and Tabs components. See related documentation.
  • Removed functionality
    • Indented code. This was removed from MDX2. Use other ways to define fenced code blocks.
    • Linking with angle brackets: This was removed from MDX2. Use other ways to define links.

What's New In NextBook 2.0?

  • Support for multiple books in one project.
  • Design based on tailwindcss.
  • Markdown content is now being loaded with next-mdx-remote. This means content is now separated from routed pages.
  • Auto-centered layout on big resolutions leading to one less configuration option.
  • 40% smaller bundle size.
  • Navigation bar.
  • Refined mobile UI.
  • Less code (−4,000 LOC).

Getting Started

  1. Having Node installed beforehand, bootstrap a new project with npx create-next-app my-awesome-book -e https://github.com/amiroff/NextBook
  2. Run npm run dev:watch and open http://localhost:3000/
  3. Check documentation to see what's possible with NextBook.
  4. Create your markdown or MDX content in content folder. Pages should auto-refresh as you modify markdown content.
  5. Update config/config.json with your table of contents and other information.
  6. Update pages/index.jsx to suit your needs as a standalone landing page or as a redirect to content.
  7. Deploy your respository or export (npm run export) and copy your content to any static hosting provider like Vercel, Netlify, Github Pages or Google Cloud.
  8. Have fun! 🎉

This should be enough to have a statically generated documentation page/book.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].