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

markdown-styles

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-styles - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

3

lib/file-tasks/apply-template.js

@@ -45,2 +45,5 @@ var Transform = require('readable-stream').Transform;

replace(this.options.meta, this.options.template)
// allow {{}} via escaping
.replace(/\\{/g, '{')
.replace(/\\}/g, '}')
);

@@ -47,0 +50,0 @@ this.buffer = '';

2

lib/misc-tasks/copy-assets.js

@@ -30,3 +30,3 @@ var fs = require('fs'),

} else {
console.log('Assets path does not exist: ' + from);
console.log('Assets path does not exist: ' + from + ', so no assets were copied.');
}

@@ -33,0 +33,0 @@ }

{
"name": "markdown-styles",
"description": "CSS stylesheets for markdown content",
"version": "1.1.1",
"version": "1.1.2",
"author": {

@@ -6,0 +6,0 @@ "name": "Mikito Takada",

@@ -1,19 +0,19 @@

# markdown-styles
## Features
CSS stylesheets / themes for Markdown.
- Ready-made CSS stylesheets for Markdown, just copy the assets folder you want
- Bundled with `generate-md`, a small tool that converts a folder of Markdown documents into a output folder of HTML documents, preserving the directory structure)
- Use your own custom markup and CSS via `--layout`.
- Support for relative paths to the assets folder via `{{assetsRelative}}` and document table of content generation via `{{toc}}`.
- Support for generic metadata via a meta.json file
## Using
-----
Copy the assets folder from the layout you want to use.
## Using the CSS stylesheets
To preview the styles in the browser, clone this repo locally and then open `./output/index.html`.
If you just want the stylesheets, you can just copy the `./assets` folder from the layout you want.
Or run:
To preview the styles in the browser, clone this repo locally and then open `./output/index.html` or run `make preview` which opens that page in your default browser.
make preview
## Using generate-md
which just uses `open` (on OSX) or `xdg-open` (on Linux) to open `./output/index.html`.
## Using via npm
This repo also includes a small tool for generating HTML files from Markdown files.

@@ -25,23 +25,62 @@

[Here is an example](https://github.com/zendesk/radar/blob/gh-pages/Makefile) of how I generated the project docs for [Radar](https://github.com/zendesk/radar).
[Here is an example](https://github.com/zendesk/radar/blob/gh-pages/Makefile) of how I generated the project docs for [Radar](https://github.com/zendesk/radar) using generate-md, a Makefile and a few custom assets.
Note how you can override / customize the theme easily since it's just a simple convention of what goes where.
`--input` specifies the input directory (default: `./input/`).
Options:
`--output` specifies the output directory (default: `./output/`).
`--layout` specifies the layout to use.
`--layout` specifies the layout to use. This can be either one of built in layouts, or a path to a custom template file with a set of custom assets.
Note: the layout can also be a specific file. In this case, that file is used as the template, and if a `./assets/` directory exists in the same location as the layout, it is copied to the output directory. For example:
To override the layout, simply create a directory, such as `./my-theme/`, with the following structure:
generate-md --layout ./layout/page.html --output ./test/
````bash
├── my-theme
│   ├── assets
│   │   ├── css
│   │   ├── img
│   │   └── js
│   └── page.html
`--input` specifies the input directory (default: `./input/`).
````
`--output` specifies the output directory (default: `./output/`).
Then, running a command like:
generate-md --input ./input/ --layout ./my-theme/page.html --output ./test/
## Screenshots
will:
Note: there may be minor differences in the rendering since these screenshots are generated via cutycapt rather than a browser.
1. convert all Markdown files in `./input` to HTML files under `./test`, preserving paths in `./input`.
2. use the template `./my-theme/page.html`, replacing values such as `{{content}}`, `{{toc}}` and `{{assetsRelative}}` (see the layouts for examples on this)
3. (recursively) copy over the assets from `./my-theme/assets` to `./test/assets`.
This means that you could, for example, point a HTTP server at the root of `./test/` and be done with it.
You can also use the current directory as the output (e.g. for Github pages).
## Metadata support
You can also add a file named `meta.json` to the folder from which you run `generate-md`.
The metadata in that directory will be read and replacements will be made for corresponding `{{names}}` in the template.
The metadata is scoped by the top-level directory in `./input`.
For example:
````json
{
"foo": {
"repoUrl": "https://github.com/mixu/markdown-styles"
}
}
````
would make the metadata value `{{repoUrl}}` available in the template, for all files that are in the directory `./input/foo`.
This is rather imperfect, but works for small stuff, feel free to contribute improvements back.
## Screenshots of the layouts
Note: these screenshots are generate via cutycapt, so they look worse than they do in a real browser.
### jasonm23-dark

@@ -48,0 +87,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc