Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/teradata/covalent-text-editor-nightly

Nightly builds of https://github.com/teradata/covalent text-editor module
https://github.com/teradata/covalent-text-editor-nightly

Last synced: 7 days ago
JSON representation

Nightly builds of https://github.com/teradata/covalent text-editor module

Awesome Lists containing this project

README

        

## TdTextEditorComponent: td-text-editor

`` element generates an easymde markdown editor.

## API Summary

#### Inputs

+ value?: string
+ value of text in editor
+ options?: object
+ Options Object of valid Configurations listed here: https://github.com/Ionaru/easy-markdown-editor#configuration

#### Properties

+ isPreviewActive?: function()
+ is the Preview Active. Returns boolean
+ isSideBySideActive?: function()
+ is the Side By Side Active. Returns boolean
+ isFullscreenActive?: function()
+ is Full Screen Active. Returns boolean
+ clearAutosavedValue?: function()
+ clears Auto Saved Value. Returns void
+ toTextArea?: function()
+ reverts to the Initial textarea. Returns void
+ easyMDE?: function()
+ getter function for the underlying easyMDE Object. Returns EasyMDE

## Installation

This component can be installed as npm package.

```bash
npm install @covalent/text-editor
```

## Setup

Import the **CovalentTextEditorModule** in your NgModule:

```typescript
import { CovalentTextEditorModule } from '@covalent/text-editor';
@NgModule({
imports: [
CovalentTextEditorModule,
...
],
...
})
export class MyModule {}
```

### Usage

```html

```

```typescript
class MyComponent {
options: any = {
lineWrapping: true,
toolbar: false,
...
};
}
```