New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

gitbook-markdown-css

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitbook-markdown-css

Minimalist stylesheet (CSS or Less) for markup output


Version published
Weekly downloads
66
decreased by-25.84%
Maintainers
6
Weekly downloads
 
Created

gitbook-markdown-css

Minimalist stylesheet (CSS or Less) for markup output.

Installation

$ npm install gitbook-markdown-css

Usage

Less version
@import "./node_modules/gitbook-markdown-css/less/mixin.less";

article {
    .gitbook-markdown();
}

See less/mixin.less for options.

CSS version

Import the gitbook-markdown.css file and add a gitbook-markdown-body class to the container of your rendered Markdown and set a width for it.

<link rel="stylesheet" href="gitbook-markdown.css">
<style>
    .markdown-body {
        min-width: 200px;
        max-width: 790px;
        margin: 0 auto;
        padding: 30px;
    }
</style>
<article class="gitbook-markdown-body">
    <h1>Unicorns</h1>
    <p>All the things</p>
</article>

FAQs

Package last updated on 12 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts