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

@covalent/flavored-markdown

v5.1.0

Published

Teradata UI Platform Flavored Markdown Module

Downloads

2,497

Readme

TdFlavoredMarkdownComponent: td-flavored-markdown

<td-flavored-markdown> is component that parses Markdown and renders markdown with Material/Covalent components for a more appealing look.

This component uses <td-markdown> to render the markdown. See <td-markdown>'s documentation for more details on the markdown rendering and various inputs.

API Summary

Inputs

  • content?: string
    • Markdown format content to be parsed as material/covalent markup.
  • simpleLineBreaks?: string
    • Sets whether newline characters inside paragraphs and spans are parsed as .
    • Defaults to false.
  • hostedUrl?: string
    • If markdown contains relative paths, this is required to generate correct urls.
  • anchor?: string
    • Anchor to jump to.
  • copyCodeToClipboard?: boolean
    • Display copy button on code snippets to copy code to clipboard.
  • copyCodeTooltips?: ICopyCodeTooltips
    • Tooltips for copy button to copy and upon copying.

For reference:

interface ICopyCodeTooltips {
  copy?: string;
  copied?: string;
}

Outputs

  • buttonClicked: ITdFlavoredMarkdownButtonClickEvent
    • Emitted when a button is clicked

Events

  • contentReady: undefined
    • Event emitted after the markdown content rendering is finished.

Installation

This component can be installed as npm package.

npm i -save @angular/cdk
npm i -save @angular/material
npm i -save @covalent/core
npm i -save @covalent/markdown
npm i -save @covalent/highlight
npm i -save @covalent/flavored-markdown

Setup

Then, import the CovalentFlavoredMarkdownModule in your NgModule:

import { CovalentFlavoredMarkdownModule } from '@covalent/flavored-markdown';
@NgModule({
  imports: [
    CovalentFlavoredMarkdownModule,
    ...
  ],
  ...
})
export class MyModule {}

Theming

This module comes with its own Covalent theme which uses the material theme which is used by importing our theme scss file. It also depends on all the covalent themes since the components being rendered by this module are from other packages.

@import '~@angular/material/theming';
@import '~@covalent/core/theming/all-theme';
@import '~@covalent/markdown/markdown-theme';
@import '~@covalent/highlight/highlight-theme';
@import '~@covalent/flavored-markdown/flavored-markdown-theme';

@include mat-core();

$primary: mat-palette($mat-orange, 800);
$accent: mat-palette($mat-light-blue, 600, A100, A400);
$warn: mat-palette($mat-red, 600);

$theme: mat-light-theme($primary, $accent, $warn);

@include mat.all-component-themes($theme);
@include covalent-theme($theme);
@include covalent-markdown-theme($theme);
@include covalent-highlight-theme();
@include covalent-flavored-markdown-theme($theme);

Example

<td-flavored-markdown>
  - [x] checked action - [ ] unchecked action + list item + list item
</td-flavored-markdown>

TdFlavoredMarkdownLoaderComponent: td-flavored-markdown-loader

A component that fetches markdown from a GitHub url and renders it using <td-flavored-markdown>.

API Summary

Inputs

  • url: string

    • The url of the markdown file.
  • httpOptions?: object

    • HTTP options that can be part of the request.
  • anchor?: string

    • Anchor to jump to.

Outputs

  • buttonClicked: ITdFlavoredMarkdownButtonClickEvent
    • Emitted when a button is clicked

Events

  • contentReady: void

    • Emitted when markdown rendering is finished.
  • loadFailed: Error

    • Emitted when loading of markdown file fails.

Example

<td-flavored-markdown-loader
  [url]="'https://github.com/Teradata/covalent/blob/main/README.md'"
>
</td-flavored-markdown-loader>