All Projects → conclurer → markdown-to-html-pipe

conclurer / markdown-to-html-pipe

Licence: MIT license
Angular 2 Pipe that transforms a markdown string to HTML

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to markdown-to-html-pipe

Angular2 Multiselect Dropdown
Angular 2 Dropdown Multiselect
Stars: ✭ 225 (+462.5%)
Mutual labels:  angular2
django-angular2-fullstack-devops
All-in-one django/angular2 seed with cli interface for multi-environment devops on aws using ansible/packer/terraform
Stars: ✭ 54 (+35%)
Mutual labels:  angular2
perspectiveapi-authorship-demo
Example code to illustrate how to build an authorship experience using the perspective API
Stars: ✭ 62 (+55%)
Mutual labels:  angular2
Ng Drag Drop
Drag & Drop for Angular - based on HTML5 with no external dependencies. 🎉
Stars: ✭ 233 (+482.5%)
Mutual labels:  angular2
Ionic Cache
Ionic and Angular cache service with IndexedDB, SQLite and WebSQL support
Stars: ✭ 248 (+520%)
Mutual labels:  angular2
angular2-signature-pad
Signature pad component for Angular 2.x and above.
Stars: ✭ 17 (-57.5%)
Mutual labels:  angular2
Ngx File Drop
Angular 11 file and folder drop library
Stars: ✭ 220 (+450%)
Mutual labels:  angular2
ng2-events
Supercharge your Angular2+ event handling
Stars: ✭ 17 (-57.5%)
Mutual labels:  angular2
ionic2 firebase shopping cart
Shopping cart built using Ionic2 and Firebase
Stars: ✭ 21 (-47.5%)
Mutual labels:  angular2
ng2-visualizejs
A simple demonstration that draws a Jaspersoft report/dashboard resource with Visualize.js library using the Angular Framework (aka Angular 2.0)
Stars: ✭ 16 (-60%)
Mutual labels:  angular2
Ng Select
⭐ Native angular select component
Stars: ✭ 2,781 (+6852.5%)
Mutual labels:  angular2
Ng Pokedex
🐵 Pokedex progressive web app built with Angular
Stars: ✭ 245 (+512.5%)
Mutual labels:  angular2
ng-treetable
A treetable module for angular 5
Stars: ✭ 32 (-20%)
Mutual labels:  angular2
Ng2 Image Upload
Angular 2 component for image uploading
Stars: ✭ 230 (+475%)
Mutual labels:  angular2
leto
Leto: Realtime Application Stack [Angualr2, Rethinkdb/Horizon, ExpressJS] Web | Mobile | Desktop
Stars: ✭ 21 (-47.5%)
Mutual labels:  angular2
Angular5 Seed
Angular5 Seed for Application
Stars: ✭ 222 (+455%)
Mutual labels:  angular2
ng-logger
Angular logger service
Stars: ✭ 65 (+62.5%)
Mutual labels:  angular2
material2-snippets
Visual studio extension & Intellij plugin for Angular Material 2, Teradata Covalent 1, Angular Flex layout 1 & Material icon snippets
Stars: ✭ 14 (-65%)
Mutual labels:  angular2
storefront
An Angular 2 storefront app for Magento 2 (unmaintained)
Stars: ✭ 35 (-12.5%)
Mutual labels:  angular2
ng-data-picker
🏄🏼 A data picker based on Angular 4+ (like native datetime picker of iOS)
Stars: ✭ 24 (-40%)
Mutual labels:  angular2

Markdown To HTML Pipe

Converts a Markdown string, outputs HTML.

Usage

// example.module.ts
import {NgModule} from '@angular/core';
import {MarkdownToHtmlModule} from 'markdown-to-html-pipe';
import {ExampleComponent} from './example.component';

@NgModule({
  imports: [MarkdownToHtmlModule],
  declarations: [ExampleComponent]
})
export class ExampleModule {}
// example.component.ts
import {Component} from '@angular/core';

@Component({
  selector: 'example',
  template: `<div [innerHTML]="content|MarkdownToHtml"></div>`
})
export class ExampleComponent {
  protected content: string = 'This will render **Markdown** content!';
}

Will be rendered as:

<div>
  <p>This will render <strong>Markdown</strong> content!</p>
</div>

Installation

Run

npm install --save markdown-to-html-pipe
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].