Skip to content
Snippets Groups Projects
Commit b784446d authored by Yannis Barlas's avatar Yannis Barlas
Browse files

Merge branch 'hide-bold' into 'staging'

Hide bold

See merge request !48
parents 49762850 61c21bd2
No related branches found
No related tags found
No related merge requests found
import { import {
BasePackage, BasePackage,
// BlockquotePackage, // BlockquotePackage,
CodePackage, // CodePackage,
EmphasisPackage, EmphasisPackage,
HeadingPackage, HeadingPackage,
LinkPackage, LinkPackage,
...@@ -10,7 +10,7 @@ import { ...@@ -10,7 +10,7 @@ import {
PersistencePackage, PersistencePackage,
ProseArticle, ProseArticle,
SpellCheckPackage, SpellCheckPackage,
StrongPackage, // StrongPackage,
SubscriptPackage, SubscriptPackage,
SuperscriptPackage SuperscriptPackage
} from 'substance' } from 'substance'
...@@ -25,7 +25,7 @@ import NotePackage from './elements/note/NotePackage' ...@@ -25,7 +25,7 @@ import NotePackage from './elements/note/NotePackage'
import SourceNotePackage from './elements/source_note/SourceNotePackage' import SourceNotePackage from './elements/source_note/SourceNotePackage'
import TrackChangePackage from './elements/track_change/TrackChangePackage' import TrackChangePackage from './elements/track_change/TrackChangePackage'
let config = { const config = {
name: 'simple-editor', name: 'simple-editor',
configure: (config, options) => { configure: (config, options) => {
config.defineSchema({ config.defineSchema({
...@@ -41,10 +41,10 @@ let config = { ...@@ -41,10 +41,10 @@ let config = {
config.import(ParagraphPackage) config.import(ParagraphPackage)
config.import(HeadingPackage) config.import(HeadingPackage)
config.import(EmphasisPackage) config.import(EmphasisPackage)
config.import(StrongPackage) // config.import(StrongPackage)
config.import(SubscriptPackage) config.import(SubscriptPackage)
config.import(SuperscriptPackage) config.import(SuperscriptPackage)
config.import(CodePackage) // config.import(CodePackage)
config.import(PersistencePackage) config.import(PersistencePackage)
// config.import(CodeblockPackage) // config.import(CodeblockPackage)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment