• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.npmignoreD24-Sep-202395 1413

.travis.ymlD24-Sep-202338 43

HISTORY.mdD24-Sep-2023203 158

LICENSED24-Sep-20231 KiB1916

README.mdD24-Sep-2023535 2515

index.jsD24-Sep-20231,009 1412

package.jsonD24-Sep-2023374 2019

test.jsD24-Sep-2023227 106

README.md

1# doctypes
2
3Shorthands for commonly used doctypes
4
5[![Build Status](https://img.shields.io/travis/pugjs/doctypes/master.svg)](https://travis-ci.org/pugjs/doctypes)
6[![NPM version](https://img.shields.io/npm/v/doctypes.svg)](https://www.npmjs.org/package/doctypes)
7
8## Installation
9
10    npm install doctypes
11
12## Usage
13
14```js
15var assert = require('assert');
16var doctypes = require('doctypes');
17
18assert(doctypes['html'] === '<!DOCTYPE html>');
19assert(doctypes['xml'] === '<?xml version="1.0" encoding="utf-8" ?>');
20```
21
22## License
23
24  MIT
25