Skip to content

More Usage Examples please #6

Description

@nawlbergs

Your Readme basically only has
<code-editor [(ngModel)]="value" />
for a usage example.

Would be nice to just thro in a snippet of how to.... for instance... add a specific language you would like to use.

I had to use chatGPT to figure it out... and im not sure I even did it correctly..

is this right?

import { CodeEditor } from '@acrodata/code-editor';
import { LanguageDescription } from '@codemirror/language';
import  { javascript } from '@codemirror/lang-javascript';
import  { html } from '@codemirror/lang-html';

// IN TEMPLATE

<code-editor [ngModel]="code()" [languages]="languages"  [language]="'javascript'"  />

// IN CONTROLLER

languages = [
    LanguageDescription.of({ name: 'javascript', support: javascript({ typescript: true }) }),
    LanguageDescription.of({ name: 'html', support: html() }),
]

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    help wantedExtra attention is needed

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions