npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ymchun/ngx-markdown-editor

v2.0.0-beta.7

Published

A simple markdown editor component for Angular

Downloads

6

Readme

npm version Build Status Known Vulnerabilities

@ymchun/ngx-markdown-editor

A simple markdown editor component for Angular 2 and up.

Demo

Stackblitz

Dependencies

Install

Using npm

npm install @ymchun/ngx-markdown-editor

Import to your module

import { NgxMarkdownEditorModule } from '@ymchun/ngx-markdown-editor';

@NgModule({
  imports: [
    NgxMarkdownEditorModule, // <-- import the library into your module
  ],
})
export class AppModule {}

Usage

Using the editor

<ngx-markdown-editor name="markdown" [(ngModel)]="markdown" (files)="upload($event)" (mentionSearchTerm)="search($event)"></ngx-markdown-editor>

Using the markdown viewer

<iframe ngxMarkdownViewer [markdown]="markdown" (ready)="ready()" (mentions)="mentions($event)" (tags)="tags($event)" (taskLists)="taskLists($event)"></iframe>

Using the markdown text preview pipe

<div>{{ markdown | ngxMarkdownTextPreview }}</div>

Using the markdown service

import { NgxMarkdownEditorService } from '@ymchun/ngx-markdown-editor';

@Component({
  ...
})
export class DemoComponent {

  public constructor(private ngxMarkdownEditorService: NgxMarkdownEditorService) {}

  public parseMarkdown(markdown: string): string {
    return this.ngxMarkdownEditorService.parse(markdown);
  }

}

Configuration

NgxMarkdownEditorComponent

Type | Name | DataType | Default Value | Description -------|-------------------|-----------------|---------------|------------- Input | height | string | '400px' | Define the total height of the editor element including the toolbar Input | historySteps | number | 10 | Define the number of history saved, 0 for disable Input | mentionConfigs | MentionConfig[] | [] | Define mention configs Input | placeholder | string | '' | Define the placeholder of the editor Input | resize | boolean | true | Whether allow user to resize this editor Output | files | File[] | Nil | Emit when files are dropped / pasted into the editor Output | mentionSearchTerm | string | Nil | Emit when user type mention search term

NgxMarkdownViewerDirective

Type | Name | DataType | Default Value | Description -------|----------------|-------------------------|---------------|------------- Input | markdown | string | undefined | Define the input markdown Input | styles | string | undefined | Define the additional css styles Input | getTagUrl | (tag: string) => string | undefined | Define the function for the link of #tag Output | mentions | string | Nil | Emit the mention when clicked, which is username Output | mentionWithIds | [ string, string ] | Nil | Emit the mention when clicked, the first string is userId, the second is username Output | ready | boolean | Nil | Emit when markdown content has loaded Output | tags | string | Nil | Emit the tag string when clicked Output | taskLists | string | Nil | Emit the updated markdown when clicked task list checkbox

For the mentions, the accepted formats are @(userId|user.name) or @user.name.

MentionConfig<T>

Name | DataType | Description ----------|---------------------|------------- data | Observable<T[]> | Array of data entries feed into mention menu template | TemplateRef | Template for render mention menu entry transform | (item: T) => string | Transform function used before inserting content to editor trigger | string | Character for trigger mention menu

MentionsSearchTerm

Name | DataType | Description --------|----------|------------- term | string | User input search term trigger | string | Trigger character