This project maintains the documentation for TinyMCE at https://www.tiny.cloud/docs-4x/. If you have any modifications you wish to contribute, fork this project, make the changes and submit a pull request. You will need to sign the contributors license agreement, which will be emailed to you upon creating the pull request.
This project is built using Jekyll.
If you would like to contribute to the TinyMCE project please read the TinyMCE Documentation Contributor's Guide at either:
- TinyMCE Documentation - Contributor's Guide.
- GitHub - Contributing to the TinyMCE developer documentation.
The following procedure assists with building (or compiling) the documentation locally. Tiny recommends testing and reviewing changes locally prior to submitting a pull request.
You need the following programs installed on your computer:
- Ruby version 2 or later. To verify the installed version, run:
ruby --version
-
Install git, g++,
make
, and the zlib development files. For example:-
On Fedora, run:
sudo dnf install git-all gcc-c++ make zlib-devel
-
On Ubuntu, Debian or their derivatives, run:
sudo apt install git gcc cpp make zlib1g-dev
-
-
Install Ruby Nokogiri: https://nokogiri.org/
sudo gem install nokogiri
-
Install Ruby Bundler. Install using:
sudo gem install bundler
-
(optional) Docker
If you are a Windows user, follow these steps to work on TinyMCE documentation:
-
Install git for Windows.
-
Install Ruby+Devkit.
-
Run the following command on a command prompt to install Ruby Bundler:
gem install bundler
-
Ruby version 2 or later is required. Verify the pre-installed version, using:
ruby --version
-
Install Ruby Bundler, using:
gem install bundler
Once you have installed any missing prerequisites, in a terminal or on a command prompt:
-
Clone the git repository:
git clone git@github.com:tinymce/tinymce-docs.git
-
Change directory into the cloned git repository:
cd tinymce-docs
-
Run the initialization script to install dependencies and create the required local files in the git repository:
./_scripts/init.sh
To create a development version of the documentation, run:
./_scripts/serve.sh
Allow the serve.sh
script to run in the background while you are working on the TinyMCE documentation.
To view the documentation; in a web browser, navigate to http://localhost:4000/.
Note: The development version of the documentation will update automatically when you save changes locally.
The TinyMCE API documentation is maintained within the TinyMCE project repository and compiled for the documentation site using MoxieDoc.
- NodeJS.
- The TinyMCE documentation repository set up for development as described in Installing Prerequisites and First time set up.
To install MoxieDoc, run:
npm install -g git://github.com/tinymce/moxiedoc.git
- Download the TinyMCE version in the
.api-version
file in this project's root directory and extract the API documentation using:
./_scripts/api-reference.sh
- Start the development server using:
./_scripts/serve.sh
- Extract the API documentation from a local copy of the TinyMCE repository using:
./_scripts/api-reference-local.sh <path/to/the/tinymce/repo>
- Start the development server using:
./_scripts/serve.sh
- To include updates made to the TinyMCE API documentation in the TinyMCE repository, run the
api-reference-local
script:
./_scripts/api-reference-local.sh <path/to/the/tinymce/repo>
Note: The development server does not need to be stopped prior to running the
api-reference-local
script.