0.1.12 • Published 5 years ago

nghtml2pug v0.1.12

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

nghtml2pug

Converts angular HTML to Pug templating language (formerly Jade).

Build Status

Initially forked from html2pug

Turns this :unamused:

<ng-container *ngFor="lel item of items; let i = index">
  <span class="icon"></span> {{ i + 1}}.{{ item }}
</ng-container>

Into this :tada:

ng-container(*ngFor='lel item of items; let i = index')
  span.icon
  |  {{ i + 1}}.{{ item }}

IMPORTANT: PEER DEPENDENCY

It uses Angular HTML parser from "@angular/compiler": "^7.2.15".

So there is a peer dependency, make sure you have it installed.

Install

Get it on npm:

npm i nghtml2pug

In case your project doesn't have @angular/compiler

npm i @angular/compiler

Usage

CLI using NPX

Accept input from a file or stdin and write to stdout:

# choose a file
npx nghtml2pug < example.html

# use pipe
echo '<h1>foo</h1>' | npx nghtml2pug

Write output to a file:

npx nghtml2pug < example.html > example.pug

npx nghtml2pug -- --help for more information.

Programmatically

const ngHTML2Pug = require('nghtml2pug')

const html = '<tg-template #title><h1>Hello World!</h1></ng-template>'
const pug = ngHTML2Pug(html, { useTabs: true })

Options

NameTypeDefaultDescription
useTabsBooleanfalseUse tabs instead of spaces
useDoubleQuotesBooleanfalseUse double quotes instead of single quotes
0.1.12

5 years ago

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago