
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@lakea/gravity-markdown-adapter-marked
Advanced tools
An adapter for `GrMarkdown` using [`marked`](https://marked.js.org/) as implementation.
An adapter for GrMarkdown
using marked
as implementation.
Install the library using NPM:
npm install @lakea/gravity-markdown-adapter-marked marked --save
Next, create a new file, markdown-adapter-root.module.ts
which exposes an Angular's module with a default configuration.
import {NgModule} from '@angular/core';
import {GrMarkdown} from '@lakea/gravity/cdk';
import {GrMarkdownAdapterMarked} from '@lakea/gravity-markdown-adapter-marked';
@NgModule({
providers: [
{
provide: GrMarkdown,
useClass: GrMarkdownAdapterMarked,
},
],
})
export class MarkdownAdapterRootModule {}
Import MarkdownAdapterRootModule
to application root module like app.module.ts
.
You should import the MarkdownAdapterRootModule once in your root module.
The MarkdownAdapterRootModule
provide the adapter implementation for GrMarkdown
.
Create your adapter implementation class extending GrMarkdown
abstraction:
import {Injectable} from '@angular/core';
import {GrMarkdown} from '@lakea/gravity/cdk';
@Injectable()
export class GrMarkdownAdapter extends GrMarkdown {
constructor() {
super();
}
public toHtml(value: string): string {
// YOUR IMPLEMENTATION
}
}
So, provide it on your application root module (maybe app.module.ts
), like this:
providers: [
{
provide: GrMarkdown,
useClass: GrMarkdownAdapter,
}
]
FAQs
An adapter for `GrMarkdown` using [`marked`](https://marked.js.org/) as implementation.
We found that @lakea/gravity-markdown-adapter-marked demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.