Skip to content

Commit

Permalink
Merge pull request #34 from tinymce/feature/TINY-10787
Browse files Browse the repository at this point in the history
TINY-10787: Update readme for correct and clear instruction
  • Loading branch information
ArvinJ-H authored May 2, 2024
2 parents ef2d039 + 42d4c5a commit 5e3a9db
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 10 deletions.
68 changes: 60 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,68 @@
# TinymceAngularTestPage
# Tinymce Angular Test Page

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.6.
This project is built using [Angular CLI](https://github.com/angular/angular-cli) version 15.2.9.

## Project setup
```
## Table of Contents
- [Setting Up the Project](#setting-up-the-project)
- [Running the Development Server](#running-the-development-server)
- [Building the Project](#building-the-project)

## Setting Up the Project
To install all dependencies, run:
```bash
yarn install
```

## Development server
Alternatively, you can use `npm`, `pnpm`, or `bun`:

```bash
npm install
```

```bash
pnpm install
```

```bash
bun install
```

## Running the Development Server
To start the development server, execute:
```shell
yarn start
```

For other package managers:
```shell
npm start
```

```shell
pnpm start
```

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
```shell
bun start
```

## Building the Project
To compile the project, use:
```shell
yarn build
```

## Build
For other package managers:
```shell
npm run build
```

```shell
pnpm run build
```

```shell
bun run build
```

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
The compiled output will be placed in the `dist/` directory.
4 changes: 2 additions & 2 deletions src/app/configs/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ const baseConfig = `
`

const basePlugins = `
plugins: "accordion ai advlist advtemplate autolink autocorrect mergetags footnotes lists link image charmap preview anchor searchreplace visualblocks code fullscreen insertdatetime media table help wordcount typography inlinecss revisionhistory exportpdf exportword importword",
plugins: "accordion ai advlist advtemplate autolink autocorrect mergetags footnotes lists link image charmap preview anchor searchreplace visualblocks code fullscreen insertdatetime media table help wordcount typography inlinecss revisionhistory exportpdf exportword importword markdown",
`

const advancePlugins = `
Expand All @@ -360,7 +360,7 @@ const advancePlugins = `
"help", "image", "insertdatetime", "importcss", "link", "lists", "media", "nonbreaking", "pagebreak", "preview", "save", "searchreplace", "table",
"advtemplate", "visualblocks", "visualchars", "wordcount", "casechange", "checklist", "powerpaste", "a11ychecker", "tinymcespellchecker", "tinydrive",
"tableofcontents", "editimage", "mentions", "mediaembed", "permanentpen", "formatpainter", "pageembed", "linkchecker", "tinycomments", "export",
"autocorrect", "mergetags", "footnotes", "typography", "inlinecss", "revisionhistory", "exportpdf", "exportword", "importword"
"autocorrect", "mergetags", "footnotes", "typography", "inlinecss", "revisionhistory", "exportpdf", "exportword", "importword", "markdown"
],
`

Expand Down

0 comments on commit 5e3a9db

Please sign in to comment.