Add notice about Summernote
This commit is contained in:
parent
d8414c3c20
commit
fe2b6844b6
@ -2,3 +2,14 @@
|
|||||||
|
|
||||||
Form handling for Yesod, in the same style as formlets. See [the forms
|
Form handling for Yesod, in the same style as formlets. See [the forms
|
||||||
chapter](http://www.yesodweb.com/book/forms) of the Yesod book.
|
chapter](http://www.yesodweb.com/book/forms) of the Yesod book.
|
||||||
|
|
||||||
|
This package provies a set of basic form inputs such as text, number, time,
|
||||||
|
checkbox, select, textarea, and etc. via `Yesod.Form.Fields` module. Also,
|
||||||
|
there is `Yesod.Form.Nic` module providing richtext field using Nic editor.
|
||||||
|
However, this module is grandfathered now and Nic editor is not actively
|
||||||
|
maintained since June 2012. You can find additional richtext editor fields in
|
||||||
|
[`yesod-form-richtext`][yesod-form-richtext] package (currently in provides
|
||||||
|
support of [Summernote][summernote] editor only).
|
||||||
|
|
||||||
|
[yesod-form-richtext]:http://hackage.haskell.org/package/yesod-form-richtext
|
||||||
|
[summernote]:http://summernote.org/
|
||||||
|
|||||||
@ -4,6 +4,13 @@
|
|||||||
{-# LANGUAGE OverloadedStrings #-}
|
{-# LANGUAGE OverloadedStrings #-}
|
||||||
{-# LANGUAGE CPP #-}
|
{-# LANGUAGE CPP #-}
|
||||||
-- | Provide the user with a rich text editor.
|
-- | Provide the user with a rich text editor.
|
||||||
|
--
|
||||||
|
-- According to NIC editor homepage it is not actively maintained since June
|
||||||
|
-- 2012. There is another better alternative — open sourced Summernote editor
|
||||||
|
-- released under MIT licence. You can use Summernote in your Yesod forms via
|
||||||
|
-- separately distributed
|
||||||
|
-- <http://hackage.haskell.org/package/yesod-form-richtext yesod-form-richtext>
|
||||||
|
-- package.
|
||||||
module Yesod.Form.Nic
|
module Yesod.Form.Nic
|
||||||
( YesodNic (..)
|
( YesodNic (..)
|
||||||
, nicHtmlField
|
, nicHtmlField
|
||||||
|
|||||||
@ -10,7 +10,7 @@ stability: Stable
|
|||||||
cabal-version: >= 1.8
|
cabal-version: >= 1.8
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
homepage: http://www.yesodweb.com/
|
homepage: http://www.yesodweb.com/
|
||||||
description: API docs and the README are available at <http://www.stackage.org/package/yesod-form>
|
description: API docs and the README are available at <http://www.stackage.org/package/yesod-form>. Third-party packages which you can find useful: <http://hackage.haskell.org/package/yesod-form-richtext yesod-form-richtext> - richtext form fields (currntly it provides only Summernote support).
|
||||||
extra-source-files: ChangeLog.md
|
extra-source-files: ChangeLog.md
|
||||||
README.md
|
README.md
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user