-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.js
46 lines (43 loc) · 133 KB
/
search.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
window.pdocSearch = (function(){
/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u<s.length;u++){var a=s[u];r[a]=this.pipeline.run(t.tokenizer(e[a]))}var l={};for(var c in o){var d=r[c]||r.any;if(d){var f=this.fieldSearch(d,c,o),h=o[c].boost;for(var p in f)f[p]=f[p]*h;for(var p in f)p in l?l[p]+=f[p]:l[p]=f[p]}}var v,g=[];for(var p in l)v={ref:p,score:l[p]},this.documentStore.hasDoc(p)&&(v.doc=this.documentStore.getDoc(p)),g.push(v);return g.sort(function(e,t){return t.score-e.score}),g},t.Index.prototype.fieldSearch=function(e,t,n){var i=n[t].bool,o=n[t].expand,r=n[t].boost,s=null,u={};return 0!==r?(e.forEach(function(e){var n=[e];1==o&&(n=this.index[t].expandToken(e));var r={};n.forEach(function(n){var o=this.index[t].getDocs(n),a=this.idf(n,t);if(s&&"AND"==i){var l={};for(var c in s)c in o&&(l[c]=o[c]);o=l}n==e&&this.fieldSearchStats(u,n,o);for(var c in o){var d=this.index[t].getTermFrequency(n,c),f=this.documentStore.getFieldLength(c,t),h=1;0!=f&&(h=1/Math.sqrt(f));var p=1;n!=e&&(p=.15*(1-(n.length-e.length)/n.length));var v=d*a*h*p;c in r?r[c]+=v:r[c]=v}},this),s=this.mergeScores(s,r,i)},this),s=this.coordNorm(s,u,e.length)):void 0},t.Index.prototype.mergeScores=function(e,t,n){if(!e)return t;if("AND"==n){var i={};for(var o in t)o in e&&(i[o]=e[o]+t[o]);return i}for(var o in t)o in e?e[o]+=t[o]:e[o]=t[o];return e},t.Index.prototype.fieldSearchStats=function(e,t,n){for(var i in n)i in e?e[i].push(t):e[i]=[t]},t.Index.prototype.coordNorm=function(e,t,n){for(var i in e)if(i in t){var o=t[i].length;e[i]=e[i]*o/n}return e},t.Index.prototype.toJSON=function(){var e={};return this._fields.forEach(function(t){e[t]=this.index[t].toJSON()},this),{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),index:e,pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},t.DocumentStore=function(e){this._save=null===e||void 0===e?!0:e,this.docs={},this.docInfo={},this.length=0},t.DocumentStore.load=function(e){var t=new this;return t.length=e.length,t.docs=e.docs,t.docInfo=e.docInfo,t._save=e.save,t},t.DocumentStore.prototype.isDocStored=function(){return this._save},t.DocumentStore.prototype.addDoc=function(t,n){this.hasDoc(t)||this.length++,this.docs[t]=this._save===!0?e(n):null},t.DocumentStore.prototype.getDoc=function(e){return this.hasDoc(e)===!1?null:this.docs[e]},t.DocumentStore.prototype.hasDoc=function(e){return e in this.docs},t.DocumentStore.prototype.removeDoc=function(e){this.hasDoc(e)&&(delete this.docs[e],delete this.docInfo[e],this.length--)},t.DocumentStore.prototype.addFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&(this.docInfo[e]||(this.docInfo[e]={}),this.docInfo[e][t]=n)},t.DocumentStore.prototype.updateFieldLength=function(e,t,n){null!==e&&void 0!==e&&0!=this.hasDoc(e)&&this.addFieldLength(e,t,n)},t.DocumentStore.prototype.getFieldLength=function(e,t){return null===e||void 0===e?0:e in this.docs&&t in this.docInfo[e]?this.docInfo[e][t]:0},t.DocumentStore.prototype.toJSON=function(){return{docs:this.docs,docInfo:this.docInfo,length:this.length,save:this._save}},t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},t={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",i="[aeiouy]",o=n+"[^aeiouy]*",r=i+"[aeiou]*",s="^("+o+")?"+r+o,u="^("+o+")?"+r+o+"("+r+")?$",a="^("+o+")?"+r+o+r+o,l="^("+o+")?"+i,c=new RegExp(s),d=new RegExp(a),f=new RegExp(u),h=new RegExp(l),p=/^(.+?)(ss|i)es$/,v=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,m=/^(.+?)(ed|ing)$/,y=/.$/,S=/(at|bl|iz)$/,x=new RegExp("([^aeiouylsz])\\1$"),w=new RegExp("^"+o+i+"[^aeiouwxy]$"),I=/^(.+?[^aeiou])y$/,b=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,E=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,D=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,F=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,P=/ll$/,k=new RegExp("^"+o+i+"[^aeiouwxy]$"),z=function(n){var i,o,r,s,u,a,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,u=v,s.test(n)?n=n.replace(s,"$1$2"):u.test(n)&&(n=n.replace(u,"$1$2")),s=g,u=m,s.test(n)){var z=s.exec(n);s=c,s.test(z[1])&&(s=y,n=n.replace(s,""))}else if(u.test(n)){var z=u.exec(n);i=z[1],u=h,u.test(i)&&(n=i,u=S,a=x,l=w,u.test(n)?n+="e":a.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=I,s.test(n)){var z=s.exec(n);i=z[1],n=i+"i"}if(s=b,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+e[o])}if(s=E,s.test(n)){var z=s.exec(n);i=z[1],o=z[2],s=c,s.test(i)&&(n=i+t[o])}if(s=D,u=F,s.test(n)){var z=s.exec(n);i=z[1],s=d,s.test(i)&&(n=i)}else if(u.test(n)){var z=u.exec(n);i=z[1]+z[2],u=d,u.test(i)&&(n=i)}if(s=_,s.test(n)){var z=s.exec(n);i=z[1],s=d,u=f,a=k,(s.test(i)||u.test(i)&&!a.test(i))&&(n=i)}return s=P,u=d,s.test(n)&&u.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return z}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.stopWordFilter=function(e){return e&&t.stopWordFilter.stopWords[e]!==!0?e:void 0},t.clearStopWords=function(){t.stopWordFilter.stopWords={}},t.addStopWords=function(e){null!=e&&Array.isArray(e)!==!1&&e.forEach(function(e){t.stopWordFilter.stopWords[e]=!0},this)},t.resetStopWords=function(){t.stopWordFilter.stopWords=t.defaultStopWords},t.defaultStopWords={"":!0,a:!0,able:!0,about:!0,across:!0,after:!0,all:!0,almost:!0,also:!0,am:!0,among:!0,an:!0,and:!0,any:!0,are:!0,as:!0,at:!0,be:!0,because:!0,been:!0,but:!0,by:!0,can:!0,cannot:!0,could:!0,dear:!0,did:!0,"do":!0,does:!0,either:!0,"else":!0,ever:!0,every:!0,"for":!0,from:!0,get:!0,got:!0,had:!0,has:!0,have:!0,he:!0,her:!0,hers:!0,him:!0,his:!0,how:!0,however:!0,i:!0,"if":!0,"in":!0,into:!0,is:!0,it:!0,its:!0,just:!0,least:!0,let:!0,like:!0,likely:!0,may:!0,me:!0,might:!0,most:!0,must:!0,my:!0,neither:!0,no:!0,nor:!0,not:!0,of:!0,off:!0,often:!0,on:!0,only:!0,or:!0,other:!0,our:!0,own:!0,rather:!0,said:!0,say:!0,says:!0,she:!0,should:!0,since:!0,so:!0,some:!0,than:!0,that:!0,the:!0,their:!0,them:!0,then:!0,there:!0,these:!0,they:!0,"this":!0,tis:!0,to:!0,too:!0,twas:!0,us:!0,wants:!0,was:!0,we:!0,were:!0,what:!0,when:!0,where:!0,which:!0,"while":!0,who:!0,whom:!0,why:!0,will:!0,"with":!0,would:!0,yet:!0,you:!0,your:!0},t.stopWordFilter.stopWords=t.defaultStopWords,t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(e){if(null===e||void 0===e)throw new Error("token should not be undefined");return e.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.InvertedIndex=function(){this.root={docs:{},df:0}},t.InvertedIndex.load=function(e){var t=new this;return t.root=e.root,t},t.InvertedIndex.prototype.addToken=function(e,t,n){for(var n=n||this.root,i=0;i<=e.length-1;){var o=e[i];o in n||(n[o]={docs:{},df:0}),i+=1,n=n[o]}var r=t.ref;n.docs[r]?n.docs[r]={tf:t.tf}:(n.docs[r]={tf:t.tf},n.df+=1)},t.InvertedIndex.prototype.hasToken=function(e){if(!e)return!1;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return!1;t=t[e[n]]}return!0},t.InvertedIndex.prototype.getNode=function(e){if(!e)return null;for(var t=this.root,n=0;n<e.length;n++){if(!t[e[n]])return null;t=t[e[n]]}return t},t.InvertedIndex.prototype.getDocs=function(e){var t=this.getNode(e);return null==t?{}:t.docs},t.InvertedIndex.prototype.getTermFrequency=function(e,t){var n=this.getNode(e);return null==n?0:t in n.docs?n.docs[t].tf:0},t.InvertedIndex.prototype.getDocFreq=function(e){var t=this.getNode(e);return null==t?0:t.df},t.InvertedIndex.prototype.removeToken=function(e,t){if(e){var n=this.getNode(e);null!=n&&t in n.docs&&(delete n.docs[t],n.df-=1)}},t.InvertedIndex.prototype.expandToken=function(e,t,n){if(null==e||""==e)return[];var t=t||[];if(void 0==n&&(n=this.getNode(e),null==n))return t;n.df>0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e<arguments.length;e++)t=arguments[e],~this.indexOf(t)||this.elements.splice(this.locationFor(t),0,t);this.length=this.elements.length},lunr.SortedSet.prototype.toArray=function(){return this.elements.slice()},lunr.SortedSet.prototype.map=function(e,t){return this.elements.map(e,t)},lunr.SortedSet.prototype.forEach=function(e,t){return this.elements.forEach(e,t)},lunr.SortedSet.prototype.indexOf=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]<u[i]?n++:s[n]>u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o<r.length;o++)i.add(r[o]);return i},lunr.SortedSet.prototype.toJSON=function(){return this.toArray()},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.elasticlunr=t()}(this,function(){return t})}();
/** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"tocgen": {"fullname": "tocgen", "modulename": "tocgen", "kind": "module", "doc": "<p>Make Tables of Contents</p>\n\n<p>Generates a Table of Contents for Markdown and HTML documents. Input and output\nformats can be mixed and matched. The table can be output to STDOUT or written\nto file.</p>\n\n<p>It is also extensible to any additional format you might want to add by\nsubclassing the abstract base classes for parsing input files and generating\noutput tables.</p>\n\n<p>This is non-production software that is still under development. User input is\nnot carefully validated. Suggested usage is in interactive workflows when\nediting your own documents. Use at your own risk.</p>\n"}, "tocgen.HtmlTagAttrs": {"fullname": "tocgen.HtmlTagAttrs", "modulename": "tocgen", "qualname": "HtmlTagAttrs", "kind": "variable", "doc": "<p></p>\n", "default_value": "list[tuple[str, str]]"}, "tocgen.OutputFormatExtension": {"fullname": "tocgen.OutputFormatExtension", "modulename": "tocgen", "qualname": "OutputFormatExtension", "kind": "class", "doc": "<p>Create a collection of name/value pairs.</p>\n\n<p>Example enumeration:</p>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"k\">class</span> <span class=\"nc\">Color</span><span class=\"p\">(</span><span class=\"n\">Enum</span><span class=\"p\">):</span>\n<span class=\"gp\">... </span> <span class=\"n\">RED</span> <span class=\"o\">=</span> <span class=\"mi\">1</span>\n<span class=\"gp\">... </span> <span class=\"n\">BLUE</span> <span class=\"o\">=</span> <span class=\"mi\">2</span>\n<span class=\"gp\">... </span> <span class=\"n\">GREEN</span> <span class=\"o\">=</span> <span class=\"mi\">3</span>\n</code></pre>\n</div>\n\n<p>Access them by:</p>\n\n<ul>\n<li>attribute access::</li>\n</ul>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"n\">Color</span><span class=\"o\">.</span><span class=\"n\">RED</span>\n<span class=\"go\"><Color.RED: 1></span>\n</code></pre>\n</div>\n\n<ul>\n<li>value lookup:</li>\n</ul>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"n\">Color</span><span class=\"p\">(</span><span class=\"mi\">1</span><span class=\"p\">)</span>\n<span class=\"go\"><Color.RED: 1></span>\n</code></pre>\n</div>\n\n<ul>\n<li>name lookup:</li>\n</ul>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"n\">Color</span><span class=\"p\">[</span><span class=\"s1\">'RED'</span><span class=\"p\">]</span>\n<span class=\"go\"><Color.RED: 1></span>\n</code></pre>\n</div>\n\n<p>Enumerations can be iterated over, and know how many members they have:</p>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"nb\">len</span><span class=\"p\">(</span><span class=\"n\">Color</span><span class=\"p\">)</span>\n<span class=\"go\">3</span>\n</code></pre>\n</div>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"nb\">list</span><span class=\"p\">(</span><span class=\"n\">Color</span><span class=\"p\">)</span>\n<span class=\"go\">[<Color.RED: 1>, <Color.BLUE: 2>, <Color.GREEN: 3>]</span>\n</code></pre>\n</div>\n\n<p>Methods can be added to enumerations, and members can have their own\nattributes -- see the documentation for details.</p>\n", "bases": "enum.Enum"}, "tocgen.OutputFormatExtension.markdown": {"fullname": "tocgen.OutputFormatExtension.markdown", "modulename": "tocgen", "qualname": "OutputFormatExtension.markdown", "kind": "variable", "doc": "<p></p>\n", "default_value": "<OutputFormatExtension.markdown: '.md'>"}, "tocgen.OutputFormatExtension.html": {"fullname": "tocgen.OutputFormatExtension.html", "modulename": "tocgen", "qualname": "OutputFormatExtension.html", "kind": "variable", "doc": "<p></p>\n", "default_value": "<OutputFormatExtension.html: '.html'>"}, "tocgen.TocEntry": {"fullname": "tocgen.TocEntry", "modulename": "tocgen", "qualname": "TocEntry", "kind": "class", "doc": "<p></p>\n"}, "tocgen.TocEntry.__init__": {"fullname": "tocgen.TocEntry.__init__", "modulename": "tocgen", "qualname": "TocEntry.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">depth</span><span class=\"p\">:</span> <span class=\"nb\">int</span>, </span><span class=\"param\"><span class=\"n\">heading</span><span class=\"p\">:</span> <span class=\"nb\">str</span>, </span><span class=\"param\"><span class=\"n\">link</span><span class=\"p\">:</span> <span class=\"nb\">str</span></span>)</span>"}, "tocgen.TocEntry.depth": {"fullname": "tocgen.TocEntry.depth", "modulename": "tocgen", "qualname": "TocEntry.depth", "kind": "variable", "doc": "<p></p>\n", "annotation": ": int"}, "tocgen.TocEntry.heading": {"fullname": "tocgen.TocEntry.heading", "modulename": "tocgen", "qualname": "TocEntry.heading", "kind": "variable", "doc": "<p></p>\n", "annotation": ": str"}, "tocgen.TocEntry.link": {"fullname": "tocgen.TocEntry.link", "modulename": "tocgen", "qualname": "TocEntry.link", "kind": "variable", "doc": "<p></p>\n", "annotation": ": str"}, "tocgen.BaseSimpleDocumentParser": {"fullname": "tocgen.BaseSimpleDocumentParser", "modulename": "tocgen", "qualname": "BaseSimpleDocumentParser", "kind": "class", "doc": "<p>Abstract base class for parsing document headings into a collection of\nentries. A subclass of the BaseTocGenerator can use those entries to\ngenerate a table of contents string.</p>\n", "bases": "abc.ABC"}, "tocgen.BaseSimpleDocumentParser.parseFile": {"fullname": "tocgen.BaseSimpleDocumentParser.parseFile", "modulename": "tocgen", "qualname": "BaseSimpleDocumentParser.parseFile", "kind": "function", "doc": "<p>Parse a file to create a list of TocEntries</p>\n\n<h6 id=\"parameters\">Parameters</h6>\n\n<ul>\n<li><strong>str infile</strong>: The file to parse.</li>\n</ul>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">infile</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">list</span><span class=\"p\">[</span><span class=\"n\">tocgen</span><span class=\"o\">.</span><span class=\"n\">TocEntry</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "tocgen.SimpleHtmlParser": {"fullname": "tocgen.SimpleHtmlParser", "modulename": "tocgen", "qualname": "SimpleHtmlParser", "kind": "class", "doc": "<p>A parser that will generate a list of TOC entries from heading nodes,\n(<em>e. g.</em>, <code><h2>Foo</h2></code>, <code><h3>Bar</h3></code>) in an HTML document.</p>\n\n<p>:ivar entries: A list of TOC entries from the most recently parsed file.</p>\n", "bases": "html.parser.HTMLParser, BaseSimpleDocumentParser"}, "tocgen.SimpleHtmlParser.__init__": {"fullname": "tocgen.SimpleHtmlParser.__init__", "modulename": "tocgen", "qualname": "SimpleHtmlParser.__init__", "kind": "function", "doc": "<p>Initialize and reset this instance.</p>\n\n<p>If convert_charrefs is True (the default), all character references\nare automatically converted to the corresponding Unicode characters.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span>)</span>"}, "tocgen.SimpleHtmlParser.entries": {"fullname": "tocgen.SimpleHtmlParser.entries", "modulename": "tocgen", "qualname": "SimpleHtmlParser.entries", "kind": "variable", "doc": "<p></p>\n", "annotation": ": list[tocgen.TocEntry]"}, "tocgen.SimpleHtmlParser.RE_HEADING": {"fullname": "tocgen.SimpleHtmlParser.RE_HEADING", "modulename": "tocgen", "qualname": "SimpleHtmlParser.RE_HEADING", "kind": "variable", "doc": "<p></p>\n", "default_value": "re.compile('^h(\\\\d+)$', re.IGNORECASE)"}, "tocgen.SimpleHtmlParser.handle_starttag": {"fullname": "tocgen.SimpleHtmlParser.handle_starttag", "modulename": "tocgen", "qualname": "SimpleHtmlParser.handle_starttag", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">tag</span>, </span><span class=\"param\"><span class=\"n\">attrs</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "tocgen.SimpleHtmlParser.handle_endtag": {"fullname": "tocgen.SimpleHtmlParser.handle_endtag", "modulename": "tocgen", "qualname": "SimpleHtmlParser.handle_endtag", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">tag</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "tocgen.SimpleHtmlParser.handle_data": {"fullname": "tocgen.SimpleHtmlParser.handle_data", "modulename": "tocgen", "qualname": "SimpleHtmlParser.handle_data", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">data</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "tocgen.SimpleHtmlParser.parseFile": {"fullname": "tocgen.SimpleHtmlParser.parseFile", "modulename": "tocgen", "qualname": "SimpleHtmlParser.parseFile", "kind": "function", "doc": "<p>Parse a file to create a list of TocEntries</p>\n\n<h6 id=\"parameters\">Parameters</h6>\n\n<ul>\n<li><strong>str infile</strong>: The file to parse.</li>\n</ul>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">infile</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">list</span><span class=\"p\">[</span><span class=\"n\">tocgen</span><span class=\"o\">.</span><span class=\"n\">TocEntry</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "tocgen.SimpleMarkdownParser": {"fullname": "tocgen.SimpleMarkdownParser", "modulename": "tocgen", "qualname": "SimpleMarkdownParser", "kind": "class", "doc": "<p>A parser that will create a list of TOC entries from heading lines\n(<em>e. g.</em>, <code>## Foo</code>, <code>### Bar</code>) in a Markdown document. Note that top\nlevel headings (<code># Main title</code>) will be ignored.</p>\n", "bases": "BaseSimpleDocumentParser"}, "tocgen.SimpleMarkdownParser.__init__": {"fullname": "tocgen.SimpleMarkdownParser.__init__", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.__init__", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"o\">*</span>, </span><span class=\"param\"><span class=\"n\">use_custom_anchors</span><span class=\"o\">=</span><span class=\"kc\">False</span></span>)</span>"}, "tocgen.SimpleMarkdownParser.FENCE": {"fullname": "tocgen.SimpleMarkdownParser.FENCE", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.FENCE", "kind": "variable", "doc": "<p></p>\n", "default_value": "'```'"}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"fullname": "tocgen.SimpleMarkdownParser.RE_CAPTURE", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.RE_CAPTURE", "kind": "variable", "doc": "<p></p>\n", "default_value": "re.compile('^(#+)(.*)$')"}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"fullname": "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.RE_HTML_COMMENT", "kind": "variable", "doc": "<p></p>\n", "default_value": "re.compile('<!--.*?-->', re.DOTALL)"}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"fullname": "tocgen.SimpleMarkdownParser.RE_SPECIALS", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.RE_SPECIALS", "kind": "variable", "doc": "<p></p>\n", "default_value": "re.compile('[!@#$%^&*()+;:\\'"\\\\[\\\\]{}|\\\\\\\\<>,./?`~]')"}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"fullname": "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.RE_CUSTOM_ID", "kind": "variable", "doc": "<p></p>\n", "default_value": "re.compile('(.*?)\\\\s*\\\\{(#.+?)}')"}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"fullname": "tocgen.SimpleMarkdownParser.use_custom_anchors", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.use_custom_anchors", "kind": "variable", "doc": "<p></p>\n"}, "tocgen.SimpleMarkdownParser.parseFile": {"fullname": "tocgen.SimpleMarkdownParser.parseFile", "modulename": "tocgen", "qualname": "SimpleMarkdownParser.parseFile", "kind": "function", "doc": "<p>Parse a file to create a list of TocEntries</p>\n\n<h6 id=\"parameters\">Parameters</h6>\n\n<ul>\n<li><strong>str infile</strong>: The file to parse.</li>\n</ul>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span>, </span><span class=\"param\"><span class=\"n\">infile</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">list</span><span class=\"p\">[</span><span class=\"n\">tocgen</span><span class=\"o\">.</span><span class=\"n\">TocEntry</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "tocgen.parse_file": {"fullname": "tocgen.parse_file", "modulename": "tocgen", "qualname": "parse_file", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">infile</span><span class=\"p\">:</span> <span class=\"nb\">str</span>, </span><span class=\"param\"><span class=\"o\">**</span><span class=\"n\">kwargs</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">list</span><span class=\"p\">[</span><span class=\"n\">tocgen</span><span class=\"o\">.</span><span class=\"n\">TocEntry</span><span class=\"p\">]</span>:</span></span>", "funcdef": "def"}, "tocgen.BaseTocGenerator": {"fullname": "tocgen.BaseTocGenerator", "modulename": "tocgen", "qualname": "BaseTocGenerator", "kind": "class", "doc": "<p>Abstract base class for generating a Table of Contents. Must be subclassed\nto generate a Table of Contents string for the corresponding output format.</p>\n", "bases": "abc.ABC"}, "tocgen.BaseTocGenerator.entries": {"fullname": "tocgen.BaseTocGenerator.entries", "modulename": "tocgen", "qualname": "BaseTocGenerator.entries", "kind": "variable", "doc": "<p></p>\n"}, "tocgen.BaseTocGenerator.indent": {"fullname": "tocgen.BaseTocGenerator.indent", "modulename": "tocgen", "qualname": "BaseTocGenerator.indent", "kind": "variable", "doc": "<p></p>\n"}, "tocgen.BaseTocGenerator.indent_str": {"fullname": "tocgen.BaseTocGenerator.indent_str", "modulename": "tocgen", "qualname": "BaseTocGenerator.indent_str", "kind": "variable", "doc": "<p></p>\n"}, "tocgen.BaseTocGenerator.outfile": {"fullname": "tocgen.BaseTocGenerator.outfile", "modulename": "tocgen", "qualname": "BaseTocGenerator.outfile", "kind": "variable", "doc": "<p></p>\n"}, "tocgen.BaseTocGenerator.write": {"fullname": "tocgen.BaseTocGenerator.write", "modulename": "tocgen", "qualname": "BaseTocGenerator.write", "kind": "function", "doc": "<p>Write the Table of Contents to file or STDOUT.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "tocgen.BaseTocGenerator.generateString": {"fullname": "tocgen.BaseTocGenerator.generateString", "modulename": "tocgen", "qualname": "BaseTocGenerator.generateString", "kind": "function", "doc": "<p>Generate a Table of Contents string corresponding to the format.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">str</span>:</span></span>", "funcdef": "def"}, "tocgen.MarkdownTocGenerator": {"fullname": "tocgen.MarkdownTocGenerator", "modulename": "tocgen", "qualname": "MarkdownTocGenerator", "kind": "class", "doc": "<p>Abstract base class for generating a Table of Contents. Must be subclassed\nto generate a Table of Contents string for the corresponding output format.</p>\n", "bases": "BaseTocGenerator"}, "tocgen.MarkdownTocGenerator.generateString": {"fullname": "tocgen.MarkdownTocGenerator.generateString", "modulename": "tocgen", "qualname": "MarkdownTocGenerator.generateString", "kind": "function", "doc": "<p>Generate a Table of Contents string corresponding to the format.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">str</span>:</span></span>", "funcdef": "def"}, "tocgen.HtmlTagGenerator": {"fullname": "tocgen.HtmlTagGenerator", "modulename": "tocgen", "qualname": "HtmlTagGenerator", "kind": "class", "doc": "<p>A variant of a SimpleNamespace that can be used to wrap strings in HTML\ntags. For example,</p>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"n\">html_tags</span> <span class=\"o\">=</span> <span class=\"n\">HtmlTagGenerator</span><span class=\"p\">([</span><span class=\"s1\">'h2'</span><span class=\"p\">,</span> <span class=\"s1\">'p'</span><span class=\"p\">,</span> <span class=\"s1\">'a'</span><span class=\"p\">])</span>\n<span class=\"gp\">>>> </span><span class=\"n\">html_tags</span><span class=\"o\">.</span><span class=\"n\">h2</span><span class=\"p\">(</span><span class=\"s1\">'This is a heading'</span><span class=\"p\">)</span>\n<span class=\"go\">'<h2>This is a heading</h2>'</span>\n<span class=\"gp\">>>> </span><span class=\"n\">mylink</span> <span class=\"o\">=</span> <span class=\"n\">html_tags</span><span class=\"o\">.</span><span class=\"n\">a</span><span class=\"p\">(</span><span class=\"s2\">"mylink"</span><span class=\"p\">,</span> <span class=\"n\">attrs</span><span class=\"o\">=</span><span class=\"p\">[(</span><span class=\"s2\">"href"</span><span class=\"p\">,</span> <span class=\"s2\">"#somewhere-in-doc"</span><span class=\"p\">)])</span>\n<span class=\"gp\">>>> </span><span class=\"n\">html_tags</span><span class=\"o\">.</span><span class=\"n\">p</span><span class=\"p\">(</span><span class=\"sa\">f</span><span class=\"s1\">'This is a link: </span><span class=\"si\">{</span><span class=\"n\">mylink</span><span class=\"si\">}</span><span class=\"s1\">'</span><span class=\"p\">)</span>\n<span class=\"go\">'<p>This is a link: <a href="#somewhere-in-doc">mylink</a></p>'</span>\n</code></pre>\n</div>\n\n<p>The instance is callable, resulting in a closure that can then be called\nto wrap strings with the tag provided. Additional tags can also be defined\non the fly by using dot notation. Examples,</p>\n\n<div class=\"pdoc-code codehilite\">\n<pre><span></span><code><span class=\"gp\">>>> </span><span class=\"n\">html_tags</span><span class=\"p\">(</span><span class=\"s1\">'ol'</span><span class=\"p\">)(</span><span class=\"n\">html_tags</span><span class=\"o\">.</span><span class=\"n\">li</span><span class=\"p\">(</span><span class=\"s1\">'one'</span><span class=\"p\">)</span> <span class=\"o\">+</span> <span class=\"n\">html_tags</span><span class=\"o\">.</span><span class=\"n\">li</span><span class=\"p\">(</span><span class=\"s1\">'two'</span><span class=\"p\">))</span>\n<span class=\"go\">'<ol><li>one</li><li>two</li></ol>'</span>\n</code></pre>\n</div>\n", "bases": "types.SimpleNamespace"}, "tocgen.HtmlTagGenerator.__init__": {"fullname": "tocgen.HtmlTagGenerator.__init__", "modulename": "tocgen", "qualname": "HtmlTagGenerator.__init__", "kind": "function", "doc": "<h6 id=\"parameters\">Parameters</h6>\n\n<ul>\n<li><strong>tags</strong>: The tags to be included. Accessed by dot notation.</li>\n</ul>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">tags</span><span class=\"p\">:</span> <span class=\"n\">collections</span><span class=\"o\">.</span><span class=\"n\">abc</span><span class=\"o\">.</span><span class=\"n\">Iterable</span><span class=\"p\">[</span><span class=\"nb\">str</span><span class=\"p\">]</span></span>)</span>"}, "tocgen.HtmlTocGenerator": {"fullname": "tocgen.HtmlTocGenerator", "modulename": "tocgen", "qualname": "HtmlTocGenerator", "kind": "class", "doc": "<p>Abstract base class for generating a Table of Contents. Must be subclassed\nto generate a Table of Contents string for the corresponding output format.</p>\n", "bases": "BaseTocGenerator"}, "tocgen.HtmlTocGenerator.generateString": {"fullname": "tocgen.HtmlTocGenerator.generateString", "modulename": "tocgen", "qualname": "HtmlTocGenerator.generateString", "kind": "function", "doc": "<p>Generate a Table of Contents string corresponding to the format.</p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"bp\">self</span></span><span class=\"return-annotation\">) -> <span class=\"nb\">str</span>:</span></span>", "funcdef": "def"}, "tocgen.parse_args": {"fullname": "tocgen.parse_args", "modulename": "tocgen", "qualname": "parse_args", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"param\"><span class=\"n\">argv</span><span class=\"o\">=</span><span class=\"kc\">None</span></span><span class=\"return-annotation\">):</span></span>", "funcdef": "def"}, "tocgen.TOC_GENERATORS": {"fullname": "tocgen.TOC_GENERATORS", "modulename": "tocgen", "qualname": "TOC_GENERATORS", "kind": "variable", "doc": "<p></p>\n", "annotation": ": dict[tocgen.OutputFormatExtension, typing.Type[tocgen.BaseTocGenerator]]", "default_value": "{<OutputFormatExtension.markdown: '.md'>: <class 'tocgen.MarkdownTocGenerator'>, <OutputFormatExtension.html: '.html'>: <class 'tocgen.HtmlTocGenerator'>}"}, "tocgen.main": {"fullname": "tocgen.main", "modulename": "tocgen", "qualname": "main", "kind": "function", "doc": "<p></p>\n", "signature": "<span class=\"signature pdoc-code condensed\">(<span class=\"return-annotation\">):</span></span>", "funcdef": "def"}}, "docInfo": {"tocgen": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 104}, "tocgen.HtmlTagAttrs": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "tocgen.OutputFormatExtension": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 338}, "tocgen.OutputFormatExtension.markdown": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "tocgen.OutputFormatExtension.html": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "tocgen.TocEntry": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.TocEntry.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "tocgen.TocEntry.depth": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.TocEntry.heading": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.TocEntry.link": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.BaseSimpleDocumentParser": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 31}, "tocgen.BaseSimpleDocumentParser.parseFile": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 29}, "tocgen.SimpleHtmlParser": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 4, "doc": 63}, "tocgen.SimpleHtmlParser.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 29}, "tocgen.SimpleHtmlParser.entries": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleHtmlParser.RE_HEADING": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleHtmlParser.handle_starttag": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "tocgen.SimpleHtmlParser.handle_endtag": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "tocgen.SimpleHtmlParser.handle_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "tocgen.SimpleHtmlParser.parseFile": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 29}, "tocgen.SimpleMarkdownParser": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 46}, "tocgen.SimpleMarkdownParser.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "tocgen.SimpleMarkdownParser.FENCE": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 5, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 16, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 10, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.SimpleMarkdownParser.parseFile": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 29}, "tocgen.parse_file": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "tocgen.BaseTocGenerator": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 27}, "tocgen.BaseTocGenerator.entries": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.BaseTocGenerator.indent": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.BaseTocGenerator.indent_str": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.BaseTocGenerator.outfile": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "tocgen.BaseTocGenerator.write": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 12}, "tocgen.BaseTocGenerator.generateString": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 13}, "tocgen.MarkdownTocGenerator": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 27}, "tocgen.MarkdownTocGenerator.generateString": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 13}, "tocgen.HtmlTagGenerator": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 401}, "tocgen.HtmlTagGenerator.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 30, "bases": 0, "doc": 22}, "tocgen.HtmlTocGenerator": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 1, "doc": 27}, "tocgen.HtmlTocGenerator.generateString": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 13}, "tocgen.parse_args": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 16, "bases": 0, "doc": 3}, "tocgen.TOC_GENERATORS": {"qualname": 2, "fullname": 3, "annotation": 6, "default_value": 32, "signature": 0, "bases": 0, "doc": 3}, "tocgen.main": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 7, "bases": 0, "doc": 3}}, "length": 46, "save": true}, "index": {"qualname": {"root": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 4, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"tocgen.OutputFormatExtension.html": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.HtmlTagAttrs": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.TocEntry.heading": {"tf": 1}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.OutputFormatExtension.html": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseTocGenerator.outfile": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.main": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.TocEntry": {"tf": 1}, "tocgen.TocEntry.__init__": {"tf": 1}, "tocgen.TocEntry.depth": {"tf": 1}, "tocgen.TocEntry.heading": {"tf": 1}, "tocgen.TocEntry.link": {"tf": 1}}, "df": 5}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.BaseTocGenerator.indent": {"tf": 1}, "tocgen.BaseTocGenerator.indent_str": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {"tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"tocgen.TocEntry.depth": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"tocgen.SimpleHtmlParser.handle_data": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"tocgen.TocEntry.link": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.entries": {"tf": 1}, "tocgen.BaseTocGenerator.indent": {"tf": 1}, "tocgen.BaseTocGenerator.indent_str": {"tf": 1}, "tocgen.BaseTocGenerator.outfile": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.parse_file": {"tf": 1}, "tocgen.parse_args": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.entries": {"tf": 1}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}}, "df": 8}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1}, "tocgen.SimpleMarkdownParser.FENCE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {"tocgen.BaseTocGenerator.indent_str": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleHtmlParser.entries": {"tf": 1}, "tocgen.BaseTocGenerator.entries": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}}, "df": 5}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.FENCE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.parse_file": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.parse_args": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseTocGenerator.write": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "fullname": {"root": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1}, "tocgen.HtmlTagAttrs": {"tf": 1}, "tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.OutputFormatExtension.html": {"tf": 1}, "tocgen.TocEntry": {"tf": 1}, "tocgen.TocEntry.__init__": {"tf": 1}, "tocgen.TocEntry.depth": {"tf": 1}, "tocgen.TocEntry.heading": {"tf": 1}, "tocgen.TocEntry.link": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.entries": {"tf": 1}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1}, "tocgen.SimpleMarkdownParser.FENCE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.parse_file": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.entries": {"tf": 1}, "tocgen.BaseTocGenerator.indent": {"tf": 1}, "tocgen.BaseTocGenerator.indent_str": {"tf": 1}, "tocgen.BaseTocGenerator.outfile": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}, "tocgen.parse_args": {"tf": 1}, "tocgen.TOC_GENERATORS": {"tf": 1}, "tocgen.main": {"tf": 1}}, "df": 46}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.TocEntry": {"tf": 1}, "tocgen.TocEntry.__init__": {"tf": 1}, "tocgen.TocEntry.depth": {"tf": 1}, "tocgen.TocEntry.heading": {"tf": 1}, "tocgen.TocEntry.link": {"tf": 1}}, "df": 5}}}}}}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"tocgen.OutputFormatExtension.html": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.HtmlTagAttrs": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.TocEntry.heading": {"tf": 1}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 1}}, "df": 3}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.OutputFormatExtension.html": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseTocGenerator.outfile": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.main": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.BaseTocGenerator.indent": {"tf": 1}, "tocgen.BaseTocGenerator.indent_str": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {"tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"tocgen.TocEntry.depth": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"tocgen.SimpleHtmlParser.handle_data": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"tocgen.TocEntry.link": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.entries": {"tf": 1}, "tocgen.BaseTocGenerator.indent": {"tf": 1}, "tocgen.BaseTocGenerator.indent_str": {"tf": 1}, "tocgen.BaseTocGenerator.outfile": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.parse_file": {"tf": 1}, "tocgen.parse_args": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.entries": {"tf": 1}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}}, "df": 8}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1}, "tocgen.SimpleMarkdownParser.FENCE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {"tocgen.BaseTocGenerator.indent_str": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleHtmlParser.entries": {"tf": 1}, "tocgen.BaseTocGenerator.entries": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}}, "df": 5}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.FENCE": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.parse_file": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.parse_args": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseTocGenerator.write": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 3}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "annotation": {"root": {"docs": {"tocgen.TocEntry.depth": {"tf": 1}, "tocgen.TocEntry.heading": {"tf": 1}, "tocgen.TocEntry.link": {"tf": 1}, "tocgen.SimpleHtmlParser.entries": {"tf": 1}, "tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.TocEntry.depth": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.TocEntry.heading": {"tf": 1}, "tocgen.TocEntry.link": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.SimpleHtmlParser.entries": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.SimpleHtmlParser.entries": {"tf": 1}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "default_value": {"root": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension.html": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.FENCE": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 2.23606797749979}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 2.6457513110645907}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 2.23606797749979}, "tocgen.TOC_GENERATORS": {"tf": 2}}, "df": 9, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.HtmlTagAttrs": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "t": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.OutputFormatExtension.html": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.TOC_GENERATORS": {"tf": 2}}, "df": 5}}, "s": {"docs": {"tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.HtmlTagAttrs": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.OutputFormatExtension.html": {"tf": 1}, "tocgen.TOC_GENERATORS": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "d": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 2}}, "x": {"2": {"7": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension.html": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.FENCE": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1.4142135623730951}, "tocgen.TOC_GENERATORS": {"tf": 2.8284271247461903}}, "df": 9}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "g": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.OutputFormatExtension.markdown": {"tf": 1}, "tocgen.OutputFormatExtension.html": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.TOC_GENERATORS": {"tf": 2}}, "df": 5}}, "h": {"docs": {"tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"tocgen.OutputFormatExtension.html": {"tf": 1.4142135623730951}, "tocgen.TOC_GENERATORS": {"tf": 1.4142135623730951}}, "df": 2, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}}, "df": 5}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1}}, "df": 5}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "d": {"docs": {"tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.TOC_GENERATORS": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "signature": {"root": {"docs": {"tocgen.TocEntry.__init__": {"tf": 5.291502622129181}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 5}, "tocgen.SimpleHtmlParser.__init__": {"tf": 3.1622776601683795}, "tocgen.SimpleHtmlParser.handle_starttag": {"tf": 4.242640687119285}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 3.7416573867739413}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 3.7416573867739413}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 5}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 4.123105625617661}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 5}, "tocgen.parse_file": {"tf": 5.5677643628300215}, "tocgen.BaseTocGenerator.write": {"tf": 3.1622776601683795}, "tocgen.BaseTocGenerator.generateString": {"tf": 3.4641016151377544}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 3.4641016151377544}, "tocgen.HtmlTagGenerator.__init__": {"tf": 5}, "tocgen.HtmlTocGenerator.generateString": {"tf": 3.4641016151377544}, "tocgen.parse_args": {"tf": 3.7416573867739413}, "tocgen.main": {"tf": 2.6457513110645907}}, "df": 17, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"tocgen.SimpleHtmlParser.handle_data": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.parse_file": {"tf": 1}}, "df": 4}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1.4142135623730951}, "tocgen.parse_file": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 6}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 10}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"tocgen.TocEntry.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.parse_file": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.parse_file": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.parse_file": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1}}, "df": 2, "s": {"docs": {"tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.parse_file": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleMarkdownParser.__init__": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "c": {"docs": {"tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "v": {"docs": {"tocgen.parse_args": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.__init__": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"tocgen.SimpleMarkdownParser.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser.__init__": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.parse_args": {"tf": 1}}, "df": 1}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator": {"tf": 1.4142135623730951}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "doc": {"root": {"1": {"docs": {"tocgen.OutputFormatExtension": {"tf": 2.449489742783178}}, "df": 1}, "2": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}, "3": {"9": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}, "tocgen.HtmlTagGenerator": {"tf": 4.69041575982343}}, "df": 2}, "docs": {"tocgen.OutputFormatExtension": {"tf": 1.7320508075688772}}, "df": 1}, "docs": {"tocgen": {"tf": 3.3166247903554}, "tocgen.HtmlTagAttrs": {"tf": 1.7320508075688772}, "tocgen.OutputFormatExtension": {"tf": 14.866068747318506}, "tocgen.OutputFormatExtension.markdown": {"tf": 1.7320508075688772}, "tocgen.OutputFormatExtension.html": {"tf": 1.7320508075688772}, "tocgen.TocEntry": {"tf": 1.7320508075688772}, "tocgen.TocEntry.__init__": {"tf": 1.7320508075688772}, "tocgen.TocEntry.depth": {"tf": 1.7320508075688772}, "tocgen.TocEntry.heading": {"tf": 1.7320508075688772}, "tocgen.TocEntry.link": {"tf": 1.7320508075688772}, "tocgen.BaseSimpleDocumentParser": {"tf": 1.7320508075688772}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 3.605551275463989}, "tocgen.SimpleHtmlParser": {"tf": 4.123105625617661}, "tocgen.SimpleHtmlParser.__init__": {"tf": 2.449489742783178}, "tocgen.SimpleHtmlParser.entries": {"tf": 1.7320508075688772}, "tocgen.SimpleHtmlParser.RE_HEADING": {"tf": 1.7320508075688772}, "tocgen.SimpleHtmlParser.handle_starttag": {"tf": 1.7320508075688772}, "tocgen.SimpleHtmlParser.handle_endtag": {"tf": 1.7320508075688772}, "tocgen.SimpleHtmlParser.handle_data": {"tf": 1.7320508075688772}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 3.605551275463989}, "tocgen.SimpleMarkdownParser": {"tf": 3.872983346207417}, "tocgen.SimpleMarkdownParser.__init__": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.FENCE": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.RE_CAPTURE": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.RE_HTML_COMMENT": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.RE_SPECIALS": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.RE_CUSTOM_ID": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.use_custom_anchors": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 3.605551275463989}, "tocgen.parse_file": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator.entries": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator.indent": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator.indent_str": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator.outfile": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator.write": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator.generateString": {"tf": 1.7320508075688772}, "tocgen.MarkdownTocGenerator": {"tf": 1.7320508075688772}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1.7320508075688772}, "tocgen.HtmlTagGenerator": {"tf": 14.52583904633395}, "tocgen.HtmlTagGenerator.__init__": {"tf": 3.3166247903554}, "tocgen.HtmlTocGenerator": {"tf": 1.7320508075688772}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1.7320508075688772}, "tocgen.parse_args": {"tf": 1.7320508075688772}, "tocgen.TOC_GENERATORS": {"tf": 1.7320508075688772}, "tocgen.main": {"tf": 1.7320508075688772}}, "df": 46, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 3}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 2}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1.4142135623730951}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1.4142135623730951}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 9, "s": {"docs": {"tocgen": {"tf": 1.4142135623730951}}, "df": 1}}}}, "g": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1, "s": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 3}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1.7320508075688772}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 17, "m": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}, "y": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}, "n": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"tocgen": {"tf": 1}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 2}}, "df": 3}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1.4142135623730951}, "tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 4}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {"tocgen": {"tf": 2}, "tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 16, "c": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 3}}}}}}}}, "p": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1.7320508075688772}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1.4142135623730951}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1.4142135623730951}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 16}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1.7320508075688772}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 4}}}}}, "r": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}}, "df": 2}, "w": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1, "e": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1}}, "l": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.7320508075688772}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator.write": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1.4142135623730951}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1.4142135623730951}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 9}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.OutputFormatExtension": {"tf": 3.4641016151377544}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 7}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension": {"tf": 1.7320508075688772}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1.7320508075688772}}, "df": 4}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 5}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "g": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 8, "s": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 4}}}}}}}}}, "t": {"docs": {"tocgen.OutputFormatExtension": {"tf": 4.898979485566356}, "tocgen.SimpleHtmlParser": {"tf": 2}, "tocgen.HtmlTagGenerator": {"tf": 5.196152422706632}}, "df": 3}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {"tocgen": {"tf": 1}, "tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1.7320508075688772}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser": {"tf": 1.7320508075688772}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1.4142135623730951}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 3.3166247903554}, "tocgen.HtmlTocGenerator": {"tf": 1.4142135623730951}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 15, "n": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1, "d": {"docs": {"tocgen": {"tf": 2}, "tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 3}, "y": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {"tocgen": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 2}}, "l": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"tocgen": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"tocgen": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 5}}}}}}}, "t": {"docs": {"tocgen": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "f": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1.4142135623730951}, "tocgen.MarkdownTocGenerator": {"tf": 1.4142135623730951}, "tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1.4142135623730951}}, "df": 7, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 7, "s": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.BaseTocGenerator.write": {"tf": 1}}, "df": 6, "s": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}, "h": {"2": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1.4142135623730951}, "tocgen.HtmlTagGenerator": {"tf": 2}}, "df": 2}, "3": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"tocgen": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 2.8284271247461903}}, "df": 3, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 3, "s": {"docs": {"tocgen": {"tf": 1.4142135623730951}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}}}}}}}}, "t": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 2}}, "df": 4, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1.7320508075688772}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {"tocgen": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"tocgen": {"tf": 2.23606797749979}, "tocgen.SimpleHtmlParser.__init__": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 2.23606797749979}}, "df": 3}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1}}}, "f": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1.4142135623730951}, "tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1.7320508075688772}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 8}, "y": {"docs": {"tocgen": {"tf": 1}, "tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseTocGenerator.write": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "r": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}, "tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.BaseTocGenerator.generateString": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator.generateString": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator.generateString": {"tf": 1}}, "df": 7, "s": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.BaseTocGenerator": {"tf": 1}, "tocgen.MarkdownTocGenerator": {"tf": 1}, "tocgen.HtmlTocGenerator": {"tf": 1}}, "df": 3}}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"tocgen.BaseTocGenerator.write": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1.4142135623730951}}, "df": 2}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 2, "s": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.BaseSimpleDocumentParser": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser": {"tf": 1.7320508075688772}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {"tocgen": {"tf": 1}}, "df": 1, "r": {"docs": {"tocgen": {"tf": 1.4142135623730951}}, "df": 1}}}}, "p": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 2}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1.4142135623730951}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1.4142135623730951}}, "df": 3, "r": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 2}, "d": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 4}}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen": {"tf": 1}}, "df": 1}, "t": {"docs": {"tocgen": {"tf": 1}}, "df": 1, "e": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}, "tocgen.HtmlTagGenerator.__init__": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}, "tocgen.BaseSimpleDocumentParser": {"tf": 1}}, "df": 2, "r": {"docs": {"tocgen": {"tf": 1}}, "df": 1}, "d": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"tocgen": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"tocgen.OutputFormatExtension": {"tf": 2.6457513110645907}}, "df": 1}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"tocgen.SimpleHtmlParser": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleHtmlParser.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.OutputFormatExtension": {"tf": 2.449489742783178}, "tocgen.SimpleHtmlParser": {"tf": 2}, "tocgen.HtmlTagGenerator": {"tf": 3.4641016151377544}}, "df": 3}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 2.449489742783178}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}, "tocgen.BaseSimpleDocumentParser.parseFile": {"tf": 1}, "tocgen.SimpleHtmlParser": {"tf": 1.4142135623730951}, "tocgen.SimpleHtmlParser.parseFile": {"tf": 1}, "tocgen.SimpleMarkdownParser": {"tf": 1}, "tocgen.SimpleMarkdownParser.parseFile": {"tf": 1}}, "df": 6}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"tocgen.SimpleMarkdownParser": {"tf": 1}}, "df": 1}}, "k": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 1.4142135623730951}}, "df": 1}}}}, "k": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"tocgen.OutputFormatExtension": {"tf": 1}}, "df": 1}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"tocgen.HtmlTagGenerator": {"tf": 2.8284271247461903}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true};
// mirrored in build-search-index.js (part 1)
// Also split on html tags. this is a cheap heuristic, but good enough.
elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/);
let searchIndex;
if (docs._isPrebuiltIndex) {
console.info("using precompiled search index");
searchIndex = elasticlunr.Index.load(docs);
} else {
console.time("building search index");
// mirrored in build-search-index.js (part 2)
searchIndex = elasticlunr(function () {
this.pipeline.remove(elasticlunr.stemmer);
this.pipeline.remove(elasticlunr.stopWordFilter);
this.addField("qualname");
this.addField("fullname");
this.addField("annotation");
this.addField("default_value");
this.addField("signature");
this.addField("bases");
this.addField("doc");
this.setRef("fullname");
});
for (let doc of docs) {
searchIndex.addDoc(doc);
}
console.timeEnd("building search index");
}
return (term) => searchIndex.search(term, {
fields: {
qualname: {boost: 4},
fullname: {boost: 2},
annotation: {boost: 2},
default_value: {boost: 2},
signature: {boost: 2},
bases: {boost: 2},
doc: {boost: 1},
},
expand: true
});
})();