From eb9834212668bf7d6354423959b0a33f1f09da7f Mon Sep 17 00:00:00 2001 From: Ian Storm Taylor Date: Thu, 25 Aug 2016 22:13:05 -0400 Subject: [PATCH] remove docs files for renaming --- docs/README.md | 13 ------------- docs/SUMMARY.md | 40 ---------------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 docs/README.md delete mode 100644 docs/SUMMARY.md diff --git a/docs/README.md b/docs/README.md deleted file mode 100644 index f335995fb..000000000 --- a/docs/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# Slate Documentation - -Slate lets you build rich, intuitive editors like those in [Medium](https://medium.com/), [Dropbox Paper](https://www.dropbox.com/paper) or [Canvas](https://usecanvas.com/)—which are becoming table stakes for applications on the web—without your codebase getting mired in complexity. - -It can do this because all of its logic is implemented with a series of plugins, so you aren't ever constrained by what _is_ or _isn't_ in "core". You can think of it like a pluggable implementation of `contenteditable` built on top of [React](https://facebook.github.io/react/) and [Immutable](https://facebook.github.io/immutable-js/). It was inspired by libraries like [Draft.js](https://facebook.github.io/draft-js/), [Prosemirror](http://prosemirror.net/) and [Quill](http://quilljs.com/). - -_**Slate is currently in beta**. It's useable now, but you might need to pull request a fix or two for advanced use cases._ - -### Contributing! - -All contributions are super welcome! Check out the [Contributing instructions](https://github.com/ianstormtaylor/slate/blob/master/Contributing.md) for more info! - -Slate is [MIT-licensed](https://github.com/ianstormtaylor/slate/blob/master/License.md). diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md deleted file mode 100644 index cdee7e08f..000000000 --- a/docs/SUMMARY.md +++ /dev/null @@ -1,40 +0,0 @@ -# Table of Content - -- [Walkthroughts](./walkthroughs/README.md) - - [Installing Slate](./walkthroughs/installing-slate.md) - - [Using the Bundled Source](./walkthroughs/using-the-bundled-source.md) - - [Adding Event Handlers](./walkthroughs/adding-event-handlers.md) - - [Defining Custom Block Nodes](./walkthroughs/defining-custom-block-nodes.md) - - [Applying Custom Formatting](./walkthroughs/applying-custom-formatting.md) - - [Using Plugins](./walkthroughs/using-plugins.md) - - [Saving to a Database](./walkthroughs/saving-to-a-database.md) - - [Saving and Loading HTML Content](./walkthroughs/saving-and-loading-html-content.md) -- [Concepts](./concepts/README.md) - - [Statelessness & Immutability](./concepts/statelessness-and-immutability.md) - - [The Document Model](./concepts/the-document-model.md) - - [The Selection Model](./concepts/the-selection-model.md) - - [Plugins](./concepts/plugins.md) -- [Reference](./reference/README.md) - - Components - - [Editor](./reference/components/editor.md) - - [Placeholder](./reference/components/placeholder.md) - - Models - - [Block](./reference/models/block.md) - - [Character](./reference/models/character.md) - - [Data](./reference//models/data.md) - - [Document](./reference/models/document.md) - - [Inline](./reference/models/inline.md) - - [Mark](./reference//models/mark.md) - - [Node](./reference/models/node.md) - - [Selection](./reference/models/selection.md) - - [State](./reference/models/state.md) - - [Text](./reference//models/text.md) - - [Transform](./reference/models/transform.md) - - Serializers - - [Html](./reference/serializers/html.md) - - [Plain](./reference/serializers/plain.md) - - [Raw](./reference/serializers/raw.md) - - Plugins - - [Plugins](./reference/plugins/plugins.md) - - [Core](./reference/plugins/core.md) -- [FAQ](./concepts/faq.md)