added lat and en languages, handeled new data structure : titles and filet

This commit is contained in:
Bachir Soussi Chiadmi
2017-10-12 14:24:27 +02:00
parent df788ba0b7
commit 72602b3e12
12 changed files with 11108 additions and 10363 deletions
+19 -6
View File
@@ -302,7 +302,20 @@ var _Part = {
// create text node
this.enonces.map(function(e){
// console.log(e.text);
return m(_Enonce, Object.assign({"partid":this.id},e))
// return m(_Enonce, Object.assign({"partid":this.id},e))
switch (e.type) {
case "title":
// handle titles
return m("h2", {'class':'title'}, m.trust(markdown.renderInline(e.title)));
break;
case "filet":
// handle filets
return m("h4", {'class':'filet'}, m.trust(markdown.renderInline(e.title)));
break;
default:
// or build structure
return m(_Enonce, Object.assign({"partid":this.id},e));
}
})
]
)
@@ -310,11 +323,11 @@ var _Part = {
}
// ____ __
// / __ \____ / /______
// / / / / __ \/ __/ ___/
// / /_/ / /_/ / /_(__ )
// /_____/\____/\__/____/
// ______
// /_ __/_______ ___
// / / / ___/ _ \/ _ \
// / / / / / __/ __/
// /_/ /_/ \___/\___/
module.exports = {
view: function(){
// console.log('_Tree view', _dbs.lang);