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

ngx-simplemde-wrapper

v0.0.2-beta

Published

A lightweight Angular 8+ wrapper around simpleMDE - Markdown Editor

Downloads

5

Readme

ngx-simplemde-wrapper

NPM version NPM downloads TypeScript License: MIT

A lightweight Angular wrapper around simplemde.

What is SimpleMDE - Markdown Editor?

A drop-in JavaScript textarea replacement for writing beautiful and understandable Markdown. The WYSIWYG-esque editor allows users who may be less experienced with Markdown to use familiar toolbar buttons and shortcuts. In addition, the syntax is rendered while editing to clearly show the expected result. Headings are larger, emphasized words are italicized, links are underlined, etc. SimpleMDE is one of the first editors to feature both built-in autosaving and spell checking.

Demo

Installation

NPM Package: ngx-simplemde-wrapper on NPM

  1. Install through NPM

    npm i ngx-simplemde-wrapper
  2. Modify the angular.json file

    You need to add CSS Styles for the simplemde (Required). Also, make sure to include the simplemde javascript library in your scripts as shown below.

    "styles": [
      "node_modules/simplemde/dist/simplemde.min.css"
    ],
    "scripts": [
      "node_modules/simplemde/dist/simplemde.min.js"
    ],
  3. Import Module

    import { SimpleMDEModule } from 'ngx-simplemde-wrapper';
           
    @NgModule({
      declarations: [],
      imports: [SimpleMDEModule.initialize()]
    })

    Optional: pre-define global configuration using initialize()

    import { SimpleMDEModule } from 'ngx-simplemde-wrapper';
           
    const config: SimpleMdEOptions = {showIcons: ['code', 'table']};
       
    @NgModule({
      declarations: [],
      imports: [SimpleMDEModule.initialize(config)]
    })

Usage

Simply add a textarea tag to the component's html file, then bind it to the SimpleMDE directive as follows:

<textarea id="textarea-1" placeholder="Add text here..."
    (SimpleMDE)="model=$event" [SimpleMDE]="model" [options]="options">
</textarea>

Where,

  • (SimpleMDE) is used to listen to changes made to the simpleMDE textarea and assign the changes to the model. Alternatively, any method can be executed on changes as follows.

    (SimpleMDE)="onChanges($event)"

    On the .ts file we can define the onChanges() method.

    onChanges($event: string) {
        this.model = $event;
        // any additional logic... For instance, model validation, etc.
      }
  • [SimpleMDE] is used to reflect changes to the model that are made programmatically outside the editor on the simpleMDE textarea. Additionally, if the model had an initial value assigned to it, the simpleMDE textarea will be initialized with that value.

  • [options] is an optional input to the directive that can be used to override the pre-defined global configurations (or the default simpleMDE options if no pre-defined configurations were provided) for each textarea.

Configurations

The SimpleMDE - Markdown Editor comes with default configurations. There are two ways these configurations can be overridden:

  1. Globally for the entire module by passing the config object to initialize(), as explained in the Installation section.
  2. Individually for each textarea using the [options] directive input, as explained in the Usage section.

More about the config object:

The config object should be of type SimpleMdEOptions. All the configurations supported by the SimpleMDE can be used with the SimpleMdEOptions interface.

For example:

const config: SimpleMdEOptions = {
    autofocus: true,
    autosave: {
        enabled: true,
        uniqueId: "MyUniqueID",
        delay: 1000,
    },
    blockStyles: {
        bold: "__",
        italic: "_"
    },
    forceSync: true,
    hideIcons: ["guide", "heading"],
    indentWithTabs: false,
    initialValue: "Hello world!",
    insertTexts: {
        horizontalRule: ["", "\n\n-----\n\n"],
        image: ["![](http://", ")"],
        link: ["[", "](http://)"],
        table: ["", "\n\n| Column 1 | Column 2 | Column 3 |\n| -------- | -------- | -------- |\n| Text     | Text      | Text     |\n\n"],
    },
    lineWrapping: false,
    parsingConfig: {
        allowAtxHeaderWithoutSpace: true,
        strikethrough: false,
        underscoresBreakWords: true,
    },
    placeholder: "Type here...",
    previewRender: function(plainText) {
        return customMarkdownParser(plainText); // Returns HTML from a custom parser
    },
    previewRender: function(plainText, preview) { // Async method
        setTimeout(function(){
            preview.innerHTML = customMarkdownParser(plainText);
        }, 250);
 
        return "Loading...";
    },
    promptURLs: true,
    renderingConfig: {
        singleLineBreaks: false,
        codeSyntaxHighlighting: true,
    },
    shortcuts: {
        drawTable: "Cmd-Alt-T"
    },
    showIcons: ["code", "table"],
    spellChecker: false,
    status: false,
    status: ["autosave", "lines", "words", "cursor"], // Optional usage
    status: ["autosave", "lines", "words", "cursor", {
        className: "keystrokes",
        defaultValue: function(el) {
            this.keystrokes = 0;
            el.innerHTML = "0 Keystrokes";
        },
        onUpdate: function(el) {
            el.innerHTML = ++this.keystrokes + " Keystrokes";
        }
    }], // Another optional usage, with a custom status bar item that counts keystrokes
    styleSelectedText: false,
    tabSize: 4,
    toolbar: false,
    toolbarTips: false,
 };

Troubleshooting

Please follow the following guidelines when reporting bugs and feature requests:

  • Use GitHub Issues board to report bugs and feature requests (not our email address). Please always write steps to reproduce the error.

All and any feedback is welcomed - this is my first NPM pacakage, please be kind :)

Thanks for understanding!

License

The MIT License (see the LICENSE file for the full text)

Development Notes

This project was generated with Angular CLI version 10.0.5.