pWiki/wiki.js
Alex A. Naanou 09ae01b636 initial prototype started....
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2016-07-04 19:51:37 +03:00

56 lines
820 B
JavaScript
Executable File

/**********************************************************************
*
*
*
**********************************************************************/
//var DEBUG = DEBUG != null ? DEBUG : true
/*********************************************************************/
// data store...
// Format:
// {
// <path>: {
// text: <text>,
//
// links: [
// <offset>: <link>,
// ],
// }
// }
var data = {
}
var Wiki = {
data: data,
get location(){
},
set location(value){
},
get path(){
},
set path(value){
},
get text(){
},
set text(value){
},
get text(){
},
set text(value){
},
}
/**********************************************************************
* vim:set ts=4 sw=4 : */