diff --git a/docs/zola/config.toml b/docs/zola/config.toml index a64e473..4fbbcbd 100644 --- a/docs/zola/config.toml +++ b/docs/zola/config.toml @@ -1,4 +1,4 @@ -base_url = "https://easydocs.codeandmedia.com" +base_url = "https://dat-adi.github.io/ff-zola/" title = "Docs" compile_sass = true build_search_index = true @@ -10,4 +10,4 @@ highlight_theme = "base16-ocean-light" [extra] logo = "https://easydocs.codeandmedia.com/logo.svg" release = "https://api.github.com/repos/getzola/zola/releases/latest" -favicon = "https://www.getzola.org/favicon.ico" \ No newline at end of file +favicon = "https://www.getzola.org/favicon.ico" diff --git a/docs/zola/public/elasticlunr.min.js b/docs/zola/public/elasticlunr.min.js deleted file mode 100644 index 79dad65..0000000 --- a/docs/zola/public/elasticlunr.min.js +++ /dev/null @@ -1,10 +0,0 @@ -/** - * elasticlunr - http://weixsong.github.io - * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.6 - * - * Copyright (C) 2017 Oliver Nightingale - * Copyright (C) 2017 Wei Song - * MIT Licensed - * @license - */ -!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;u0&&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;e1;){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]&&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. - function makeTeaser(body, terms) { - var TERM_WEIGHT = 40; - var NORMAL_WORD_WEIGHT = 2; - var FIRST_WORD_WEIGHT = 8; - var TEASER_MAX_WORDS = 30; - - var stemmedTerms = terms.map(function (w) { - return elasticlunr.stemmer(w.toLowerCase()); - }); - var termFound = false; - var index = 0; - var weighted = []; // contains elements of ["word", weight, index_in_document] - - // split in sentences, then words - var sentences = body.toLowerCase().split(". "); - - for (var i in sentences) { - var words = sentences[i].split(" "); - var value = FIRST_WORD_WEIGHT; - - for (var j in words) { - var word = words[j]; - - if (word.length > 0) { - for (var k in stemmedTerms) { - if (elasticlunr.stemmer(word).startsWith(stemmedTerms[k])) { - value = TERM_WEIGHT; - termFound = true; - } - } - weighted.push([word, value, index]); - value = NORMAL_WORD_WEIGHT; - } - - index += word.length; - index += 1; // ' ' or '.' if last word in sentence - } - - index += 1; // because we split at a two-char boundary '. ' - } - - if (weighted.length === 0) { - return body; - } - - var windowWeights = []; - var windowSize = Math.min(weighted.length, TEASER_MAX_WORDS); - // We add a window with all the weights first - var curSum = 0; - for (var i = 0; i < windowSize; i++) { - curSum += weighted[i][1]; - } - windowWeights.push(curSum); - - for (var i = 0; i < weighted.length - windowSize; i++) { - curSum -= weighted[i][1]; - curSum += weighted[i + windowSize][1]; - windowWeights.push(curSum); - } - - // If we didn't find the term, just pick the first window - var maxSumIndex = 0; - if (termFound) { - var maxFound = 0; - // backwards - for (var i = windowWeights.length - 1; i >= 0; i--) { - if (windowWeights[i] > maxFound) { - maxFound = windowWeights[i]; - maxSumIndex = i; - } - } - } - - var teaser = []; - var startIndex = weighted[maxSumIndex][2]; - for (var i = maxSumIndex; i < maxSumIndex + windowSize; i++) { - var word = weighted[i]; - if (startIndex < word[2]) { - // missing text from index to start of `word` - teaser.push(body.substring(startIndex, word[2])); - startIndex = word[2]; - } - - // add around search terms - if (word[1] === TERM_WEIGHT) { - teaser.push(""); - } - startIndex = word[2] + word[0].length; - teaser.push(body.substring(word[2], startIndex)); - - if (word[1] === TERM_WEIGHT) { - teaser.push(""); - } - } - teaser.push("…"); - return teaser.join(""); - } - - function formatSearchResultItem(item, terms) { - var li = document.createElement("li"); - li.classList.add("search-results__item"); - li.innerHTML = `${item.doc.title}`; - li.innerHTML += `
${makeTeaser(item.doc.body, terms)}
`; - return li; - } - - // Go from the book view to the search view - function toggleSearchMode() { - var $wrapContent = document.querySelector("#wrap"); - var $searchIcon = document.querySelector("#search-ico"); - var $searchContainer = document.querySelector(".search-container"); - if ($searchContainer.classList.contains("search-container--is-visible")) { - $searchContainer.classList.remove("search-container--is-visible"); - $wrapContent.style.display = ""; - $searchIcon.className = "ms-Icon--Search"; - } else { - $searchContainer.classList.add("search-container--is-visible"); - $wrapContent.style.display = "none"; - $searchIcon.className = "ms-Icon--ChromeClose"; - document.getElementById("search").focus(); - } - } - - function initSearch() { - var $searchInput = document.getElementById("search"); - if (!$searchInput) { - return; - } - var $searchIcon = document.querySelector("#search-ico"); - $searchIcon.addEventListener("click", toggleSearchMode); - - var $searchResults = document.querySelector(".search-results"); - var $searchResultsHeader = document.querySelector(".search-results__header"); - var $searchResultsItems = document.querySelector(".search-results__items"); - var MAX_ITEMS = 100; - - var options = { - bool: "AND", - fields: { - title: {boost: 2}, - body: {boost: 1}, - } - }; - var currentTerm = ""; - var index = elasticlunr.Index.load(window.searchIndex); - - $searchInput.addEventListener("keyup", debounce(function() { - var term = $searchInput.value.trim(); - if (term === currentTerm || !index) { - return; - } - $searchResults.style.display = term === "" ? "none" : "block"; - $searchResultsItems.innerHTML = ""; - if (term === "") { - return; - } - - var results = index.search(term, options).filter(function (r) { - return r.doc.body !== ""; - }); - if (results.length === 0) { - $searchResultsHeader.innerText = `Nothing like «${term}»`; - return; - } - - currentTerm = term; - $searchResultsHeader.innerText = `${results.length} found for «${term}»:`; - for (var i = 0; i < Math.min(results.length, MAX_ITEMS); i++) { - if (!results[i].doc.body) { - continue; - } - // var item = document.createElement("li"); - // item.innerHTML = formatSearchResultItem(results[i], term.split(" ")); - console.log(results[i]); - $searchResultsItems.appendChild(formatSearchResultItem(results[i], term.split(" "))); - } - }, 150)); - } - - if (document.readyState === "complete" || - (document.readyState !== "loading" && !document.documentElement.doScroll) - ) { - initSearch(); - } else { - document.addEventListener("DOMContentLoaded", initSearch); - } - -// mobile - - function burger() { - let x = document.querySelector("#trees"); - let y = document.querySelector("#mobile"); - - if (x.style.display === "block") { - x.style.display = "none"; - y.className = "ms-Icon--GlobalNavButton"; - } else { - x.style.display = "block"; - y.className = "ms-Icon--ChromeClose"; - } - } - -// https://aaronluna.dev/blog/add-copy-button-to-code-blocks-hugo-chroma/ - -function createCopyButton(highlightDiv) { - const button = document.createElement("button"); - button.className = "copy-code-button "; - button.type = "button"; - button.innerHTML = ""; - button.addEventListener("click", () => - copyCodeToClipboard(button, highlightDiv) - ); - addCopyButtonToDom(button, highlightDiv); -} - -async function copyCodeToClipboard(button, highlightDiv) { - const codeToCopy = highlightDiv.querySelector(":last-child > code") - .innerText; - try { - result = await navigator.permissions.query({ name: "clipboard-write" }); - if (result.state == "granted" || result.state == "prompt") { - await navigator.clipboard.writeText(codeToCopy); - } else { - copyCodeBlockExecCommand(codeToCopy, highlightDiv); - } - } catch (_) { - copyCodeBlockExecCommand(codeToCopy, highlightDiv); - } finally { - codeWasCopied(button); - } -} - -function copyCodeBlockExecCommand(codeToCopy, highlightDiv) { - const textArea = document.createElement("textArea"); - textArea.contentEditable = "true"; - textArea.readOnly = "false"; - textArea.className = "copyable-text-area"; - textArea.value = codeToCopy; - highlightDiv.insertBefore(textArea, highlightDiv.firstChild); - const range = document.createRange(); - range.selectNodeContents(textArea); - const sel = window.getSelection(); - sel.removeAllRanges(); - sel.addRange(range); - textArea.setSelectionRange(0, 999999); - document.execCommand("copy"); - highlightDiv.removeChild(textArea); -} - -function codeWasCopied(button) { - button.blur(); - button.innerHTML = ""; - setTimeout(function () { - button.innerHTML = ""; - }, 2000); -} - -function addCopyButtonToDom(button, highlightDiv) { - highlightDiv.insertBefore(button, highlightDiv.firstChild); - const wrapper = document.createElement("div"); - wrapper.className = "highlight-wrapper"; - highlightDiv.parentNode.insertBefore(wrapper, highlightDiv); - wrapper.appendChild(highlightDiv); -} - -document - .querySelectorAll("pre") - .forEach((highlightDiv) => createCopyButton(highlightDiv)); diff --git a/docs/zola/public/logo.svg b/docs/zola/public/logo.svg deleted file mode 100644 index 5d7d965..0000000 --- a/docs/zola/public/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/zola/public/main.css b/docs/zola/public/main.css deleted file mode 100644 index 03b4b3c..0000000 --- a/docs/zola/public/main.css +++ /dev/null @@ -1 +0,0 @@ -html{font-kerning:normal;text-rendering:optimizeLegibility;scroll-behavior:smooth}body{margin:1.5rem 0;font-size:1.125rem;font-family:Segoe UI,system-ui,-apple-system,sans-serif;line-height:1.75;background:#f9f9f9;color:#222}@keyframes fade-in{0%{opacity:0}50%{opacity:0.8}100%{opacity:1}}a:link{color:blue;text-decoration:none}a:hover{color:#c00}a:visited{color:#009}h2 .anchor,h3 .anchor,h4 .anchor{visibility:hidden;text-decoration:none;cursor:pointer;line-height:1;color:#222}h2:hover .anchor,h3:hover .anchor,h4:hover .anchor{visibility:visible;animation:fade-in 0.3s ease-in-out;font-family:'FabricMDL2Icons'}pre{margin:1.5rem 0;border-radius:4px;padding:1.5rem;overflow:auto;position:relative}pre code{background:transparent}pre code::after{content:attr(data-lang);font-style:italic;line-height:1;opacity:0.3;position:absolute;bottom:1.5rem;right:1.5rem;z-index:1}code{font:400 1.125rem/1.75 SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace}.copy-code-button{font-family:'FabricMDL2Icons';display:none;background:#f9f9f9;border-radius:4px;border:none;cursor:pointer;animation:fade-in 0.3s ease-in-out;font-size:1.5rem;color:#222;z-index:10;position:absolute;top:1.5rem;right:1.5rem}pre:hover .copy-code-button{display:block}nav{position:sticky;height:92vh;top:1.5rem;left:1.5rem;bottom:1.5rem;padding-right:1.5rem;width:20rem}nav img{width:128px}nav h1{margin:0;line-height:1}#toc{margin-left:calc(1.5rem + 1.125rem);padding:0;margin:0 0 0 1.5rem;font-size:80%}#toc li{color:#222;margin-left:1.125rem}#toc li::before{display:inline-block;content:""}#toc li ul{padding:0}main{display:flex;flex-flow:row nowrap;animation:fade-in 0.4s ease-in-out}#release{text-align:left;margin:1.5rem 0}#release::before{display:inline-block;content:"\EE2E";font-family:'FabricMDL2Icons';margin-right:calc(1.5rem / 8)}@keyframes slideIn{0%{max-height:0;opacity:0}100%{max-height:999px;opacity:1}}@keyframes slideOut{0%{height:auto;opacity:1}100%{height:0;opacity:0}}nav label{display:block}#trees{overflow-y:auto;height:80%}.subtree{overflow:hidden;margin:calc(1.5rem / 8) 0;transition:overflow 0.2s ease-in-out;padding:0}.tree-toggle-label{user-select:none;cursor:pointer}.tree-toggle-label::before{display:inline-block;content:"\E970";font-family:'FabricMDL2Icons';font-size:.75rem;transform:rotate(0deg);transform-origin:50% 50% 0px;transition:transform 0.1s linear 0s;margin-right:2px}.tree-toggle{position:absolute;opacity:0;z-index:-1}.tree-toggle:checked+.tree-toggle-label::before{content:"\E970";font-family:'FabricMDL2Icons';font-size:.75rem;transform:rotate(90deg);transform-origin:50% 50% 0px;transition:transform 0.1s linear 0s;margin-right:2px}.tree-toggle:checked+.tree-toggle-label{font-weight:bold}.tree-toggle+.tree-toggle-label+.subtree{animation-name:slideOut;animation-duration:0.25s;animation-fill-mode:both}.tree-toggle:checked+.tree-toggle-label+.subtree{animation-name:slideIn;animation-duration:0.25s;animation-fill-mode:both}.subtree li{list-style-type:none;margin-left:1.5rem}.subtree li a{color:#222}.subtree li::before{content:"\E7C3";font-family:'FabricMDL2Icons';font-size:0.75rem}.active a{font-weight:bold}article{width:calc(100% - (1.5rem * 4 + 20rem));margin-left:calc(1.5rem * 2)}article img{max-width:100%}#mobile{display:none}@media screen and (max-width: 1023px){main{flex-flow:column nowrap;width:100%}nav{position:inherit;height:auto;margin:1.5rem 1.5rem 0 1.5rem}article{width:calc(100% - (1.5rem * 2));margin:0 1.5rem;z-index:1}#mobile{font-family:'FabricMDL2Icons';cursor:pointer;font-size:1.5rem;margin:0 1.5rem 0 0;display:block;color:#222}#trees{display:none;position:absolute;background:#f9f9f9;height:auto;width:100vw;z-index:10;box-shadow:0 2px 0 rgba(0,0,0,0.1)}#on_right{margin-top:1.5rem}}@font-face{font-family:'FabricMDL2Icons';src:url("data:application/octet-stream;base64,d09GRgABAAAAAAusAA4AAAAAFLgABDXDAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEgAAABgMUZ1H2NtYXAAAAGMAAAAWgAAAYKg2Y81Y3Z0IAAAAegAAAAgAAAAKgnZCa9mcGdtAAACCAAAAPAAAAFZ/J7mjmdhc3AAAAL4AAAADAAAAAwACAAbZ2x5ZgAAAwQAAANyAAAEuLnx29VoZWFkAAAGeAAAADIAAAA2A3zu4GhoZWEAAAasAAAAFQAAACQQAQgDaG10eAAABsQAAAAYAAAAGA+HAaZsb2NhAAAG3AAAABYAAAAWBoYE+m1heHAAAAb0AAAAHQAAACAAJAHEbmFtZQAABxQAAAP3AAAJ+o6N8lFwb3N0AAALDAAAABQAAAAg/1EAgXByZXAAAAsgAAAAiQAAANN4vfIOeJxjYGHfzjiBgZWBgXUWqzEDA6M0hGa+yJDGJMTBysrFyMQIBgxAIMCAAL7BCgoMDs8Z3ulxgPkQkgGsjgXCU2BgAADc3QgGeJxjYGBgZoBgGQZGBhCoAfIYwXwWhgQgLcIgABRhec7wXPG50XO/54df7H5x4mXBO73//xkYsIlKMko8lLgqsVXCUdxL3E5shuBtqMkYgJENu/hIAgCdyyInAAB4nGPQYghlKGBoYFjFyMDYwOzAeIDBAYsIEAAAqhwHlXicXY+/TsNADMZzJLSEJ0A6IZ11KkOViJ3phksk1CUlDOelgNRKpO+AlIXFA8/ibhnzYgjMEf4utr/P+ny/c6f5yXx2nKVHKilWnDfhoNQLDurtmf35IU/vNmVhTNV5VvdlwWoJomtOF/VNsGjI0PWWTG0eH7acLWKXxY7w0nDShk7qbQB2qL/HHeJVPJLFI4QS30/xfYxL+rUsVobTiyasA/des/OoAUzFYxN49BoQf8ikP3VnE+NsOWXbwE5zgkSfygL3RJqE+0uPf/Wgkv+G+23Iv6tB9U3c9Bb0h2HBgrChl2fbUAkaYPkOhPxkxgABAAIACAAK//8AD3icXVNNaBtXEJ55b1dPsl0165UqUOJ1dze7mx+quFrJilwQwgQ3P8UpOGCKUhNfSnrqJb/Q4BcoGAr9CfSUGHpyLr2VJCT0klsv7SVXQ29uySmJCbQr7646byWnpjvsm583b+bNN/OAwX0A7Sv9GnAQAC3DNjzbsO/zP+JH7FFyFvRr/a9/0BaBPg6AMg85OgAFKMJR+CWzctCOPwY48ATegtzrJzAGnNZ8Juskz7yPdtMuG2+WPPwD//26lDIGKRmurQFTifJE4EKL8tUtrVwqaq7jB5ijtdloYQ2bjY5m1jus2agx1ymycslienf1wcbti/X6xdsbD1ZvbV+KX5jVqm/yA+cvDG3Xn230ehvPro94Hobm4bEL5+OXpl+tmty4tH1raNuFfe4Zp8olSEFE9U9CFYLsjozqCoxGh4VI4NEfEtnoEpquUSHRsAUcrLmlaHu75NYOIsWJCbeESkfJQO6CvPsZJ1lItR/JP/W7yj8BJndlKhEGhHtCR/r37jFIYdgPCdS0vOqHIOwBVSLTLmTcEBBJreehl26hTCGW+lbfy9NZ9KKeTkhHFAPf4D0OUEBRwKCArQJWtDv8izsxEfFsIZUuvV+NlQtAhgkImgwKMw4GVEY3IQRCMww8ewSKQoEqTYH3UEpvczOWzBtAQppGNSZSA21r10OZIy2Vm1sIfckIlL5Us6fCMwnvwTn4fIR6qchc26mxwC7yTGiqHti0VbE7PEQakVY2NLMfYE15DEeFPEazoywirL9TLuWOo8XD3NP5K8thuHxlfgDty0tzE+nribmly+0BzF9drteXr87j0I4TmT2WVnvm8NjDqu9XH44dnmlbAziy0LCsxsIRXe5JA/i/F5Mqh4rpn1o5eXLllK9iq9x7egqTzokpGkh/6oQzqaLsRVN8/x4gfgoi96GI1NMsMNVAtsijWLziIo5eCZJiscMFFzv0HiWwPIhf4W0wqVM+1FW3iAQaNDg50VS8hUYL9SHGOYG6iR2szDYbvuuQKlqcusXenU7WeJd3F+YSme6w038n371MHqd/6c+PnZmdtg4lYbq+wn6fOt0rH50uVseSj5x1HLBPsBt/n75Yw672Mf6YrqY7485P6dM00JbSn7/EdvLtDVz8JpVW88yx4CxFWcGb7LepQ1HZmg4KFGXdgX8Bg/8uhAAAeJxjYGRgYGAxPVwnx6UQz2/zlYGbgwEE9v892ACi78Sumg+iORjA4pwMTCAKAB/CCRAAAHicY2BkYOBgAAE4yciACpgAAsoAHQAAAAUqAKYIAAAAAAAAgACAAAAAgAAAAV0AgAAAABYASACYAN4BAAEiAVQB4gH4AlwAAHicY2BkYGDgYshiYGUAAUYwyQXCjJEgJgAOogDqAAAAeJy1VE+LGzcUf1472S1plhIo5KhDKZvFjLNuIDQ5LUlzyl42YSGXgjySZ0TGIyFpMkzpoccc+jF6CfRTlBZ67LmfoOeeeux7bzReb+yGbaEeRvPT0/v7e08GgLujz2EE/e8LfHs8gju46/Ee7MNXCY9R/jzhCeKvE74BH4NL+CZ8At8mvA9fwvcJH8Cn8EvCt+AYfk/49ujn0SThQzje+xWjjCYf4U7t/ZnwCD4bXyS8B4fjbxIeo/xtwhPEPyZ8A+6Of0v4JojxHwnvg58cJHwAx5PBzy14Ofkh4dvjt5O/Ej6Elwff/fROzO+fPBRnJvc22GUUT6x31stobJ2J06oS56YoYxDnOmj/RqvsmVx4k4uzp8/n4jQEHcO5LppK+u2DbcmF9gE9iwfZ/KQ/pcP+7IUurBYmCCmil0qvpH8t7FLEUm/kV3jbOBLnduVkbXTIdiZfxugezWZt22ar4TxDm1nsnC28dGU3W9o6htmleWicq4xWgg4y8co2YiU70QSNSWBiJBbRitxrGfVUKBNcJbupkLUSzhs8zVFF41cG4bRfmRjR3aLjIiqT65p84UEQ1g9gSRGm26U6b1WTx6kg5tF2SjZDAFOLtjR5uZFZi0FNnVeNwjats7d11Ykjc0/o1QJzuVRHDx/KltWVqQvhdYjYKWL1MgCZr309ZgaODEaJekUt8AajKtvWlZXqKnuyp0p7KsdiKFyb6JoolKYySafUlbvKKA5j3SV1agg6RH5KszCYc3b9bsM7EDCH+3ACDxGdgYEcPFgI+C4houwJIo93nlaJEoOohgxPTqHCR8A5ygoo8SzwTuNXo/YbXBVqPkO7Be7JN8V4iv8sc7YPrEl2ZFVAg/4kal7H4jo6F5xHSDkLeIDZzLHWTdvBctPuBWdjcRWoQ1VJfCMzoFC64ixfo4xYopOSdXfxV/C+QQYH7Ry/K9xLzMkwW9m/YJ54jih9BDN8Wn4y9Pe+fZbizBB37KVgPw49dChdsjeqdrYzeuCcHXbEcB/F2oJ6/4prEsxEh9+GueuZ6BkbtElmuWqPGlSHhinuFes57njHEuKD4jjuTG+bJy867SX7dtxXqjnyGVktOI+hExVXRFZDXr1F4C74LclyXcP0Wl11vFdok+N+ynz1M9/Hna7jvF+B4Ulsmacc192ctalS0s6xmobnTu3knmwqRkeofw+/NKGLxMsu730O/5XbS++KPRUo8zzHMd2pYVZ3VTBE387r8cYMUCV9LZHjDbeA/Pe1KpS0XLnlW/mh2ZNXpkpzX2xa+6p63PDNatiSsh26OfghzYpv8j/PaP/PWKfOXHofbohJLNP8UL4LZrrv7f9wt/8GD0U4iAB4nGNgZgCD/34M5QyYgAsAKTQB0nic28CgzbCJkZNJm3ETF4jcztWaG2qrysChvZ07NdhBTwbE4onwsNCQBLF4nc215YVBLD4dFRkRHhCLX05CmI8DxBLg4+FkZwGxBMEAxBLaMKEgwADIYtjOCDeaCW40M9xoFrjRrHCj2eQkoUazw43mgBvNCTd6kzAju/YGBgXX2kwJFwDEASgaAAAA") format("truetype")}.ms-Icon{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:'FabricMDL2Icons';font-style:normal;font-weight:normal;speak:none}.ms-Icon--ChevronRightSmall:before{content:"\E970"}.ms-Icon--ChromeClose:before{content:"\E8BB"}.ms-Icon--Copy:before{content:"\E8C8"}.ms-Icon--GlobalNavButton:before{content:"\E700"}.ms-Icon--MiniLink:before{content:"\E732"}.ms-Icon--Page:before{content:"\E7C3"}.ms-Icon--ProductRelease:before{content:"\EE2E"}.ms-Icon--Save:before{content:"\E74E"}.ms-Icon--Search:before{content:"\E721"}.search-container{display:none}.search-container--is-visible{display:block;width:100%}.search-container #search{width:100%;display:block;border:none;border-left:1px solid #222;padding:1px 0;text-align:left;line-height:1.5rem;font-size:1.125rem;font-family:Segoe UI,system-ui,-apple-system,sans-serif;color:#222;background:transparent}.search-container #search:focus{outline:none;border:none}.search-container .search-results__header{font-weight:bold;padding:1rem 0rem}.search-container .search-results__items{margin:0 2vw;padding:0;list-style:circle}.search-container .search-results__item{margin-bottom:1rem}#on_right{display:block;text-align:right;margin-bottom:1.5rem}#search-ico{font-family:'FabricMDL2Icons';cursor:pointer;font-size:1.5rem;line-height:1} diff --git a/docs/zola/public/search_index.en.js b/docs/zola/public/search_index.en.js deleted file mode 100644 index 664fe2b..0000000 --- a/docs/zola/public/search_index.en.js +++ /dev/null @@ -1 +0,0 @@ -window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0}},"df":4,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0}},"df":1}}}}},"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1}}}},"4":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}},"8":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}},"9":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}},"0":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":1}},"2":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"1":{"docs":{},"df":0,"5":{"docs":{},"df":0,":":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,":":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"z":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}},"8":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}},"1":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":5,",":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}},".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2},"2":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"4":{"docs":{},"df":0,"3":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}},"0":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.7320508075688772}},"df":2,"0":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":2}},"1":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":1},"2":{"docs":{},"df":0,"7":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1,":":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"3":{"docs":{},"df":0,"3":{"docs":{},"df":0,"7":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"5":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1},"6":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}},"7":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"2":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":3,",":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}},".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}},"0":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"0":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":1,"x":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":1}}}}}},"2":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1},"3":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}},"1":{"docs":{},"df":0,"2":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1},"7":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.23606797749979}},"df":1},"8":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1},"9":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":2}}},"5":{"docs":{},"df":0,"6":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}},"7":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1},"8":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1},"9":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}},"3":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":3,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"0":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":1},"8":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}},"4":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":3,"0":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/404/":{"tf":1.0}},"df":1}}}}}}}},"5":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":4,"0":{"docs":{},"df":0,",":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":1}}},"1":{"docs":{},"df":0,"2":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}},"6":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2},"7":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}},"8":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"9":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"_":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":3.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":7}},"{":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":2}}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}},"v":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":7}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":9}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":3,"@":{"docs":{},"df":0,"v":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"@":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2}}}}},"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":7,"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":17,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":8,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":1}}},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/robots/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":11,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,":":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":7}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":3}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":4}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":5}}}},"m":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,";":{"docs":{},"df":0,"#":{"docs":{},"df":0,"x":{"docs":{},"df":0,"2":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}},"&":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979}},"df":1}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":4}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":9}}},"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":4}}}},"p":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951}},"df":1},"k":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}},"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":3}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.8284271247461903}},"df":4,"c":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":2}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.7320508075688772}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.449489742783178}},"df":3}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":2}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":4,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":3}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.6457513110645907}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":2}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"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,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"'":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951}},"df":1}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":1}},"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2}}},"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}},"k":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":3},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0}},"df":7,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":4}}},"u":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":6,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":2}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":2.0}},"df":5}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":11}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772}},"df":1,"=":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0}},"df":1}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":12}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":2}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"d":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":3.1622776601683795}},"df":1,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"k":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}},"u":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772}},"df":1}}},"b":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":2,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":16,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}}}}},"1":{"docs":{},"df":0,"6":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772}},"df":1}},"6":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":6,"/":{"docs":{},"df":0,"$":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"$":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}},"]":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.0}},"df":1}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"}":{"docs":{},"df":0,"/":{"docs":{},"df":0,"{":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0}},"df":6}}},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":6,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}}},"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"w":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":9}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":3}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":6}}}}}},"i":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":3.0}},"df":2}}}},"g":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.7320508075688772}},"df":3}}}},"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":2}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":2}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":8}},"g":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":4.795831523312719},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":7,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979}},"df":1}}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2},"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0}},"df":1,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":3},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":8},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"x":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":4}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":4}},"w":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/":{"tf":2.23606797749979}},"df":1}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":3}}}}}},"s":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1},"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":3.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":17,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}},"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":4}}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":15}}},"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}},"z":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":2,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979}},"df":3,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":6}},"p":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.7320508075688772}},"df":2,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":11}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1,"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}},"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"d":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1,"n":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"g":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1},"g":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":10}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.0}},"df":3}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":7,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":2,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":2}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":3}}}},"i":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0}},"df":2,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}},"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.0}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"s":{"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,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0}},"df":1}}}}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}},"{":{"docs":{},"df":0,"{":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.8284271247461903}},"df":1},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"j":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":2.23606797749979}},"df":2}},"s":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":4,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.0}},"df":1,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}},"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"o":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":2,"d":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":2.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":8}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}},"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0}},"df":2}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":3},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":7,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":2.449489742783178}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":5,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":4,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2}}},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":7,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3},"x":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":2}}}},"f":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.8284271247461903}},"df":13,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":2}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":13}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":14,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":2}}}}},".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":2}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":3},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":14}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/":{"tf":1.0},"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/overview/":{"tf":3.605551275463989},"http://127.0.0.1:1111/content/page/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":2.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":5.0990195135927845},"http://127.0.0.1:1111/templates/overview/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":4.123105625617661},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":21,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}}}}}}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"n":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951}},"df":1}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"1":{"docs":{},"df":0,"8":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":4}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951}},"df":1}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772}},"df":4}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":5}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":16}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"s":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":2.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":4,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":2},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}},"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.6457513110645907}},"df":7,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951}},"df":2}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951}},"df":2}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":5,"i":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":3}}}}}}},"x":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.1622776601683795}},"df":1},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2}},"t":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":4.47213595499958},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":9,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"[":{"docs":{},"df":0,"0":{"docs":{},"df":0,"]":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}},"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.6457513110645907}},"df":7,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.449489742783178}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}},"y":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}},"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772}},"df":1,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1},"m":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.7320508075688772}},"df":1}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":2.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":3.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":21,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":4}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":7,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"o":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":8}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/deployment/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":3.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951}},"df":6,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":2},"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":8}}}}},"i":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":8}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}}}}},"v":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4}}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":9}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1},"r":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":9}},"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.8284271247461903}},"df":1,"=":{"docs":{},"df":0,"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":5.0990195135927845},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":3.3166247903554},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":3.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":2.23606797749979}},"df":25}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}}}}},"k":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.4142135623730951}},"df":6}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}}}},"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}},"o":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2,"a":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1},"c":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979}},"df":12,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"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,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951}},"df":3}}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":10}},"e":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":9}},"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":2,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":2}}}}}},"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":3.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":4,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":2},"r":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":2}}}},"z":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":8}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":12}},"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":2}}}}},"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":3,"i":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":4}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}},"b":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.449489742783178}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":2}}},"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0}},"df":5}}}},"n":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":3,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.0}},"df":10}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":2}}},"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}}}},"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":6,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":4}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.4142135623730951}},"df":5}}},"i":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":2}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0}},"df":5}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":3},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951}},"df":4}}}}}},"o":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.0}},"df":1},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":3}}}}}},"r":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"q":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":5}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":3}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":2,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979}},"df":3}}}}}},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/page/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":3.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":21}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":5}}},"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951}},"df":1}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":3}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":7}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772}},"df":1,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":4}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":3},"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":4}},"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":8,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2}}}}}}},"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772}},"df":1}}}}}}},"f":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1,"0":{"docs":{},"df":0,"3":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1},"8":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"7":{"docs":{},"df":0,"7":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"9":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1},"5":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":3}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":6}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}}},"o":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":5}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":4.242640687119285},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.605551275463989},"http://127.0.0.1:1111/templates/feeds/":{"tf":4.242640687119285},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":7,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}},"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":2}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}},"m":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2}}},"w":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":5}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":9}}},"l":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":4.242640687119285},"http://127.0.0.1:1111/content/page/":{"tf":4.0},"http://127.0.0.1:1111/content/sass/":{"tf":3.3166247903554},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":4.242640687119285},"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.872983346207417},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":4.795831523312719},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":2.8284271247461903}},"df":29,"'":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1},"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":3.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":5,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":2}}}}}}}}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":2},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":4}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}},"d":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":9,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":3}},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":3.1622776601683795}},"df":3}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"w":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/sass/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":8}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":23}}}},"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2},"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}},"g":{"docs":{"http://127.0.0.1:1111/":{"tf":3.605551275463989}},"df":1,"e":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/":{"tf":2.0}},"df":1,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":7,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}},"r":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"q":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1},"r":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.0}},"df":3,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}}}}},"e":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":2}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/section/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":8,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":9}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0}},"df":5}}}}}}}},"g":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951}},"df":1}},"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.449489742783178},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":15,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":3}}}}}}}},"r":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.8284271247461903}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"=":{"docs":{},"df":0,"[":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"\"":{"docs":{},"df":0,",":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":10,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":1,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"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,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":2,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1},"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"(":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":1,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"@":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/robots/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979}},"df":1,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979}},"df":1}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":1,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"(":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"5":{"docs":{},"df":0,"f":{"docs":{},"df":0,"b":{"docs":{},"df":0,"6":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"4":{"docs":{},"df":0,"0":{"docs":{},"df":0,"9":{"docs":{},"df":0,"f":{"docs":{},"df":0,"2":{"docs":{},"df":0,"8":{"docs":{},"df":0,"7":{"docs":{},"df":0,"2":{"docs":{},"df":0,"1":{"docs":{},"df":0,"c":{"docs":{},"df":0,"0":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"1":{"docs":{},"df":0,"4":{"docs":{},"df":0,"1":{"docs":{},"df":0,"6":{"docs":{},"df":0,"1":{"docs":{},"df":0,"6":{"docs":{},"df":0,"4":{"docs":{},"df":0,"4":{"docs":{},"df":0,"c":{"docs":{},"df":0,"5":{"docs":{},"df":0,"7":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":8,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.0}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":4.242640687119285},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":7}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":3,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":2,"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951}},"df":8}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":3}},"e":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"z":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":7,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"g":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951}},"df":1}}},"p":{"docs":{},"df":0,"k":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}},"q":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,",":{"docs":{},"df":0,"x":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}},"q":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951}},"df":2,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":1},"y":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"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":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"v":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}}}}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":3.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/sass/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":10.954451150103322},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":14,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1,"d":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}}}}}},"v":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":2,"+":{"docs":{},"df":0,"+":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"1":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}}}}}},"2":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}}}}}},"=":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"2":{"docs":{},"df":0,"5":{"docs":{},"df":0,"6":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":2}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":1,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":2}}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":2}}},"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"d":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.449489742783178}},"df":6}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"'":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":2,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772}},"df":1}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":14,"'":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1},"]":{"docs":{},"df":0,"(":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"j":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772}},"df":2,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.7320508075688772}},"df":3}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":6}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":5,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"@":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"8":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"{":{"docs":{},"df":0,"{":{"docs":{},"df":0,"h":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}}}}}}}}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"2":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"l":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":9,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}},".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"j":{"docs":{},"df":0,"2":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,"7":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,":":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}}}}}}}}}},"[":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"0":{"docs":{},"df":0,"1":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"b":{"docs":{},"df":0,"8":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}},"d":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"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,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"}":{"docs":{},"df":0,"@":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}},"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"9":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"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,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}},"x":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,".":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":4},"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":2},"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2}}},"l":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.23606797749979}},"df":1}}}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":7,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":2}}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":3.3166247903554},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":5,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"[":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":3}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":7}}}}},"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}}}}}}}}}}},"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":12,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951}},"df":1}},"d":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}},"x":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":2.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.7320508075688772}},"df":8,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}}},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":5}}}},"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.0},"http://127.0.0.1:1111/content/page/":{"tf":2.0}},"df":2}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":3},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":1,"r":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":8}}}},"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4,"i":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":3}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2,"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":4,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}}}}}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0}},"df":1}},"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":5,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":10}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":2,"r":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":3,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.449489742783178}},"df":3,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}},"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":3},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"s":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":5}}},"s":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":4}}},"t":{"docs":{},"df":0,"'":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":7},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2}}}}},"e":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":4},"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":5}}}}}},"j":{"docs":{},"df":0,"2":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"a":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.0}},"df":1,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":3,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"2":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1},"h":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979}},"df":2}},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":3}},"y":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":5,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":6}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"z":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.0}},"df":1,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2,"a":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":2},"g":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":3.605551275463989},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.23606797749979}},"df":7,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"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,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.8284271247461903}},"df":9,"e":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951}},"df":3,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":3},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2}},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"v":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":3}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":2}},"t":{"docs":{},"df":0,"'":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":5},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":4}}}},"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}},"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}},"é":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772}},"df":1}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":2},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772}},"df":1}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":3}}},"n":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":4},"k":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":3.605551275463989},"http://127.0.0.1:1111/content/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":16,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}}},"]":{"docs":{},"df":0,"(":{"docs":{},"df":0,"@":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1,"#":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":2.449489742783178}},"df":2}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1},"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/templates/sitemap/":{"tf":2.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":11,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":5,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":8,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1,"(":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"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,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2},"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":6}}},"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}},"o":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1},"g":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":15},"p":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}},"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":5.477225575051661}},"df":3,";":{"docs":{},"df":0,"!":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}},"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":2}}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}}}},"h":{"docs":{},"df":0,"1":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0}},"df":1}}}},"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951}},"df":1}}}}},"p":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"s":{"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,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":3}}}}}},"a":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":3,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.449489742783178}},"df":1}}}}}},"h":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}},"2":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951}},"df":1,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":2}}}}}}}}},"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":2}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"k":{"docs":{},"df":0,"g":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":3}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":2}}},"d":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":7},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}}}},"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}},"k":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":16,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":6}}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":6}}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.23606797749979}},"df":12,"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":3}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":4}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":10,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}}}}}}},"x":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":1}},"b":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951}},"df":1},"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":7,"o":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1,"w":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2,"t":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":3}}}},"u":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":4,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":2,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}},"k":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"m":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":2},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":5,"i":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":7}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":14,"o":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":4},"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.0}},"df":1}},"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"v":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}},"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4}}}}},"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951}},"df":6}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}}},"z":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":3.3166247903554},"http://127.0.0.1:1111/content/sass/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":4.242640687119285},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":2.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":2.23606797749979}},"df":17,"=":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2}}}},"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":3.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.449489742783178}},"df":2}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":20}},"g":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4}},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":3.3166247903554},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":3},"y":{"docs":{},"df":0,"'":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":2}}},"w":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}},"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951}},"df":4}}},"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2,"o":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"m":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}},"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":6,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":13},"h":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1},"f":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"w":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":6}},"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772}},"df":1}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/pagination/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":11,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":2}}}},"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":4}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":2.23606797749979}},"df":2}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":3.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":16,"c":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":7},"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":7,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2}},"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":13}}}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":7}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"z":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":2}}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2,"x":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":4}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":4,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":3.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":13,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":5,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":9,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":3}}},"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":9}}}},"w":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2}}}}}}}}}}},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":2}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":4.0},"http://127.0.0.1:1111/content/page/":{"tf":4.69041575982343},"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":6.48074069840786},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":4.123105625617661},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/overview/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":4.69041575982343},"http://127.0.0.1:1111/templates/pagination/":{"tf":3.3166247903554},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":26,"'":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0}},"df":4},".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}},"d":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":1},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.7320508075688772}},"df":5}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":2}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951}},"df":1}}}},"/":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772}},"df":3}}}}},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":2}}}}}},"r":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":3.605551275463989}},"df":1},"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.0}},"df":5,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":5}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":3}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0}},"df":3}}},"s":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":4,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":5,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":5},"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"h":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":2.0},"http://127.0.0.1:1111/content/page/":{"tf":4.58257569495584},"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":3.605551275463989},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":18,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}}}}},"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":2}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2}}}}},"y":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}},"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}},"r":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":4,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pagination/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.7320508075688772}},"df":8}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"_":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1,"3":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"4":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"5":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"7":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,"e":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}},"k":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":6}},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0}},"df":3}},"n":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":7}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":8}}},"p":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":2,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":3}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":5}}}},"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/templates/archive/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.7320508075688772}},"df":7,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":2}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"e":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,"{":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4}},"i":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":2}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":5}},"r":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1}},"t":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1}},"s":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951}},"df":2}},"o":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951}},"df":3,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":2}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":2}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"o":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":9}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2,"t":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.449489742783178},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":10,"'":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}},"’":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":14}}}}},"s":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"d":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/sass/":{"tf":2.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":8,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.0}},"df":3}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":5}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.449489742783178},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":3}},"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":4}},"x":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"3":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"w":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":2}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":3,"e":{"docs":{},"df":0,"(":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}},"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.0}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":2.23606797749979}},"df":1}},"k":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1},"e":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":4,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}},"i":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}},"&":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}},"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}}},"m":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":1}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":2}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"l":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.449489742783178}},"df":4,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}},"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}},"s":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.7320508075688772}},"df":3}},"v":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":3}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":1},"v":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":12,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":9}}},"o":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":4,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.605551275463989},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":3.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":2.449489742783178},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":7}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":5}}},"i":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.7320508075688772}},"df":8}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"p":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"z":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":5}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979}},"df":2}}}},"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":5,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":4}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979}},"df":3}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":2}}}}},"f":{"docs":{},"df":0,"c":{"docs":{},"df":0,"3":{"docs":{},"df":0,"3":{"docs":{},"df":0,"3":{"docs":{},"df":0,"9":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.23606797749979}},"df":1}}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1},"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}},"j":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"k":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.7320508075688772}},"df":2}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1},"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":10}}},"p":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.449489742783178}},"df":3,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}}},"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951}},"df":3}},"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":10,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.449489742783178}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":4}}},"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"s":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979}},"df":5,"}":{"docs":{},"df":0,"}":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/sass/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":14,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}}}}}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":7,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.23606797749979}},"df":1}}},"b":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":2}}}},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.449489742783178},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":2}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":7,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}},"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951}},"df":1}}}}}},"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"$":{"docs":{},"df":0,"{":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772}},"df":2,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/content/page/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":6.708203932499369},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":3.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":4.358898943540674},"http://127.0.0.1:1111/templates/pagination/":{"tf":2.449489742783178},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":19,"'":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2},".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":2}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}},"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":15,"k":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":4}}}},"n":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1},"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}},"r":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":8,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":4}}}},"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":4.123105625617661},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":4.69041575982343},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.7416573867739413},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.605551275463989},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":3.872983346207417},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":23,"u":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":4}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":2}}}},"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":1,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"2":{"docs":{},"df":0,"5":{"docs":{},"df":0,"6":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"3":{"docs":{},"df":0,"8":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"/":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772}},"df":1}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":5.830951894845301},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"}":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.4142135623730951}},"df":3,"_":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":1}}}}}},"n":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951}},"df":2,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":7}}}},"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":5,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/robots/":{"tf":1.0}},"df":1}}},"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2,"f":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":2.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":3.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/deployment/vercel/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":2.449489742783178},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":2.6457513110645907}},"df":25,"'":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951}},"df":3},"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":3.0}},"df":3,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951}},"df":2}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"z":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":2}}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":2.449489742783178},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":7,"i":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":4},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951}},"df":1}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":2.449489742783178}},"df":2}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}}}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":2}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}},"v":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"%":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}},"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":4,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":3.872983346207417},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":3,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":4}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":4}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"c":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3}},"f":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951}},"df":7,"i":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":9}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":3,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.0}},"df":1}}}}}}}}}},"q":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"{":{"docs":{},"df":0,"{":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"g":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0}},"df":1},"l":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":2}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":10}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":3.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":11,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}},"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}},"y":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":5}},"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":4}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178}},"df":2}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"9":{"docs":{},"df":0,"2":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":5.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":3.4641016151377544}},"df":7,"(":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979}},"df":7,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"e":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":2,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951}},"df":1}}}}}},"u":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":3.605551275463989},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":2}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":2}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0}},"df":2}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":2,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1}}}},"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":8}},"d":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":2}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"x":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2},"y":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":9}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":4},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.23606797749979}},"df":1}}}}}}},"v":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"w":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2}}}}}},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":3},"u":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}},"g":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":9,"_":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}},"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":6,"n":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}},"r":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"t":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}},"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":5.744562646538029},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.8284271247461903}},"df":9,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}}}}},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.7320508075688772}},"df":4}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951}},"df":3}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772}},"df":1}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":4}},"m":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.0},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/section/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/overview/":{"tf":4.47213595499958},"http://127.0.0.1:1111/templates/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":3.3166247903554},"http://127.0.0.1:1111/templates/overview/":{"tf":6.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/templates/robots/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":4.795831523312719},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":21,"e":{"docs":{},"df":0,"(":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"s":{"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,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":7},"m":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":5.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":2.449489742783178}},"df":7,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":3,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":2}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"e":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":2.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":6,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"'":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/themes/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":5.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":3.3166247903554},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":4.69041575982343},"http://127.0.0.1:1111/themes/overview/":{"tf":1.7320508075688772}},"df":13,"'":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.7320508075688772}},"df":2},".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}},"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"_":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":2.0}},"df":1}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"{":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":2}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":3,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,";":{"docs":{},"df":0,"(":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":3}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":5}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":6}}}}},"u":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":6}},"i":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":7}},"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951}},"df":12,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772}},"df":1},"d":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":4.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":3}}},"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772}},"df":8,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":3},"r":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951}},"df":1,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"=":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0}},"df":4,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.7416573867739413}},"df":1,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"_":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"_":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"e":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"i":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":3,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951}},"df":2}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":4.123105625617661},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.605551275463989},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":12,"_":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"(":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"=":{"docs":{},"df":0,"1":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"2":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"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,"_":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"v":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":3}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}},"g":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"o":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":9,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":2.23606797749979},"http://127.0.0.1:1111/templates/pagination/":{"tf":2.0}},"df":5,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"+":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"+":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}}}},"ê":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}},"u":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":2}}}}},"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0}},"df":4,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2}}},"q":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}},"x":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2}},"k":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":2}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":3}}},"i":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":3}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"p":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":10,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":8}}},"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":3.4641016151377544},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":16}},"s":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/overview/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/page/":{"tf":3.3166247903554},"http://127.0.0.1:1111/content/sass/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":4.358898943540674},"http://127.0.0.1:1111/content/shortcodes/":{"tf":4.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.23606797749979},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":3.872983346207417},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.449489742783178},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":3.605551275463989},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/overview/":{"tf":3.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/overview/":{"tf":4.123105625617661},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":2.449489742783178},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":2.449489742783178},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":29,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"2":{"docs":{},"df":0,"1":{"docs":{},"df":0,"4":{"docs":{},"df":0,"9":{"docs":{},"df":0,"9":{"docs":{},"df":0,"1":{"docs":{},"df":0,"6":{"docs":{},"df":0,"6":{"docs":{},"df":0,"7":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":4,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.7320508075688772}},"df":7,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}},"9":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}},"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":4}},"u":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/taxonomies/":{"tf":2.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951}},"df":11}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":3.872983346207417},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/feeds/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/overview/":{"tf":3.605551275463989},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/templates/pagination/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.7320508075688772}},"df":22}}},"o":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":3}}}}},"c":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":2.23606797749979}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/search/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":9},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.449489742783178},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":8}}}},"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.0}},"df":1}}},"e":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":2}},"m":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,"4":{"docs":{},"df":0,"3":{"docs":{},"df":0,"1":{"docs":{},"df":0,"3":{"docs":{},"df":0,"5":{"docs":{},"df":0,"5":{"docs":{},"df":0,"3":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.4142135623730951}},"df":1}}},"p":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"s":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":2,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":2.23606797749979},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":2.0},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.4142135623730951}},"df":23}},"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772}},"df":1}}},"y":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":8}},"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":2.0}},"df":1}},"r":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}},"b":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":6,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":5,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":2.0},"http://127.0.0.1:1111/content/section/":{"tf":3.605551275463989},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":2.0}},"df":3,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":1}}},"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":7}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":5}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.4142135623730951}},"df":1,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":4}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.7320508075688772}},"df":4}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0}},"df":2},"t":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.7320508075688772}},"df":3}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0}},"df":1}}},"h":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.7320508075688772}},"df":4}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":7}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":8}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0},"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/sass/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":8}}},"r":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":3,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951}},"df":1}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0}},"df":2}}}}}},"k":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0},"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":11,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":3}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0},"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":3},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.4142135623730951}},"df":2}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}}}}}}}},"x":{"docs":{"http://127.0.0.1:1111/templates/overview/":{"tf":1.0}},"df":1,"8":{"docs":{},"df":0,"6":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"_":{"docs":{},"df":0,"6":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"2":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"2":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"z":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"/":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.7320508075688772}},"df":1}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.4142135623730951}},"df":3}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}},"w":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/content/taxonomies/":{"tf":3.1622776601683795},"http://127.0.0.1:1111/templates/archive/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":4,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1},"r":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":2}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.6457513110645907}},"df":1,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}},"(":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"d":{"docs":{},"df":0,"q":{"docs":{},"df":0,"w":{"docs":{},"df":0,"4":{"docs":{},"df":0,"w":{"docs":{},"df":0,"9":{"docs":{},"df":0,"w":{"docs":{},"df":0,"g":{"docs":{},"df":0,"x":{"docs":{},"df":0,"c":{"docs":{},"df":0,"q":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":2.449489742783178}},"df":1}}}}}}}}}}}}}}}},".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}}}}}},"y":{"docs":{},"df":0,"y":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.7320508075688772}},"df":1}}}},"z":{"docs":{},"df":0,"_":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"a":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.4142135623730951}},"df":1}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/multilingual/":{"tf":2.0},"http://127.0.0.1:1111/content/overview/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/content/page/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/sass/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/search/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/section/":{"tf":2.23606797749979},"http://127.0.0.1:1111/content/shortcodes/":{"tf":3.0},"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":2.8284271247461903},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":2.449489742783178},"http://127.0.0.1:1111/deployment/netlify/":{"tf":2.6457513110645907},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":5.385164807134504},"http://127.0.0.1:1111/getting-started/configuration/":{"tf":2.449489742783178},"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/getting-started/installation/":{"tf":4.58257569495584},"http://127.0.0.1:1111/getting-started/overview/":{"tf":4.58257569495584},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/archive/":{"tf":1.0},"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":3.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/robots/":{"tf":1.0},"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.4142135623730951},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":2.23606797749979},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.4142135623730951}},"df":31,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}}}},"'":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1},"_":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.7320508075688772},"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.4142135623730951}},"df":3}}}}}}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}},"title":{"root":{"docs":{},"df":0,"4":{"docs":{},"df":0,"0":{"docs":{},"df":0,"4":{"docs":{"http://127.0.0.1:1111/templates/404/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"http://127.0.0.1:1111/templates/archive/":{"tf":1.0}},"df":1}}}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/configuration/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/":{"tf":1.0},"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":2}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"http://127.0.0.1:1111/deployment/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/templates/404/":{"tf":1.0}},"df":1}}}},"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/templates/feeds/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/getting-started/installation/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"http://127.0.0.1:1111/content/linking/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"http://127.0.0.1:1111/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/deployment/netlify/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"http://127.0.0.1:1111/content/overview/":{"tf":1.0},"http://127.0.0.1:1111/deployment/overview/":{"tf":1.0},"http://127.0.0.1:1111/getting-started/overview/":{"tf":1.0},"http://127.0.0.1:1111/templates/overview/":{"tf":1.0},"http://127.0.0.1:1111/themes/overview/":{"tf":1.0}},"df":5}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/page/":{"tf":1.0},"http://127.0.0.1:1111/deployment/github-pages/":{"tf":1.0},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"tf":1.0},"http://127.0.0.1:1111/templates/404/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":5},"i":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/templates/pagination/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/robots/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/content/sass/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://127.0.0.1:1111/content/search/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://127.0.0.1:1111/content/section/":{"tf":1.0},"http://127.0.0.1:1111/templates/pages-sections/":{"tf":1.0}},"df":2}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"http://127.0.0.1:1111/content/shortcodes/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/content/multilingual/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"http://127.0.0.1:1111/templates/sitemap/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/getting-started/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://127.0.0.1:1111/getting-started/directory-structure/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"http://127.0.0.1:1111/content/syntax-highlighting/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/content/table-of-contents/":{"tf":1.0}},"df":1}},"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"http://127.0.0.1:1111/content/taxonomies/":{"tf":1.0},"http://127.0.0.1:1111/templates/taxonomies/":{"tf":1.0}},"df":2}}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://127.0.0.1:1111/templates/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"http://127.0.0.1:1111/themes/":{"tf":1.0},"http://127.0.0.1:1111/themes/creating-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/extending-a-theme/":{"tf":1.0},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":4}}}}},"u":{"docs":{},"df":0,"s":{"docs":{"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"g":{"docs":{"http://127.0.0.1:1111/getting-started/cli-usage/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"http://127.0.0.1:1111/deployment/vercel/":{"tf":1.0}},"df":1}}}}}}}}},"documentStore":{"save":true,"docs":{"http://127.0.0.1:1111/":{"body":"ForgeFlux \nForgeFlux aims to implement federation in software forges , enabling\na decentralized development environment.\nWhy is this significant? \nThere have been numerous forges that have popped \nup over the course of time.\nEach of these forges have their own community base,\nand projects that are associated to the forge itself.\nHowever, issues arise when a user wishes to contribute towards\na project that exists in another forge.\nThis would require them to charter into unknown forge territory,\nto have to relearn the functionality that they're already at home with.\nForgeFlux, is an idea, that intends to get rid this problem.\nWork on your own forge, but bridge the project.\nBridging a project would allow for a user to contribute towards projects that \nexist in foreign forges, through the comfort of their own forge.\nHas this been done before? \nThe initial forgefed was \nan attempt to bridge this gap, by introducing the concept \nof bridging the gap between forges.\nThis approach required for the forge developers to actively \nparticipate in the development of the software.\nThe present ForgeFlux, focuses on the implementation being present \nin the API space instead.\nThis reduces the interference required on the side of the forges themselves,\nand seeks to develop on existing utility and APIs provided.\nForgeFlux, consists of a terminology for the development and \nutilization of it's software, which result in terms such as forges,\nand interfaces being tossed around.\nIt is recommended for a reader to go through the ecosystem-architecture, if there is any confusion regarding the usage of particular words in this documentation.\n","id":"http://127.0.0.1:1111/","title":"Magic Bridges"},"http://127.0.0.1:1111/content/":{"body":"","id":"http://127.0.0.1:1111/content/","title":"Content"},"http://127.0.0.1:1111/content/linking/":{"body":"Heading id and anchor insertion \nWhile rendering the Markdown content, a unique id will automatically be assigned to each heading. \nThis id is created by converting the heading text to a slug if slugify.anchors is set to \"on\" (the default).\nIf slugify.paths is set to \"safe\", whitespaces are replaced by _ and the following characters are stripped: #, %, <, >, [, ], (, ), `, ^, {, |, }.\nIf slugify.paths is set to \"off\", no modifications are made, and you may be left with nominally illegal ids.\nA number is appended at the end if the slug already exists for that article \nFor example:\n# Something exciting! <- something-exciting\n## Example code <- example-code\n\n# Something else <- something-else\n## Example code <- example-code-1\n\nYou can also manually specify an id with a {#…} suffix on the heading line:\n# Something manual! {#manual}\n\nThis is useful for making deep links robust, either proactively (so that you can later change the text of a heading\nwithout breaking links to it) or retroactively (keeping the slug of the old header text when changing the text). It\ncan also be useful for migration of existing sites with different header id schemes, so that you can keep deep\nlinks working.\nAnchor insertion \nIt is possible to have Zola automatically insert anchor links next to the heading, as you can see on this documentation\nif you hover a title.\nThis option is set at the section level: the insert_anchor_links variable on the\nsection front matter page.\nThe default template is very basic and will need CSS tweaks in your project to look decent.\nIf you want to change the anchor template, it can be easily overwritten by\ncreating an anchor-link.html file in the templates directory.\nThe anchor link template has the following variables:\n\nid: the heading's id after applying the rules defined by slugify.anchors\nlevel: the heading level (between 1 and 6)\n\nInternal links \nLinking to other pages and their headings is so common that Zola adds a\nspecial syntax to Markdown links to handle them: start the link with @/ and point to the .md file you want\nto link to. The path to the file starts from the content directory.\nFor example, linking to a file located at content/pages/about.md would be [my link](@/pages/about.md).\nYou can still link to an anchor directly; [my link](@/pages/about.md#example) will work as expected.\n","id":"http://127.0.0.1:1111/content/linking/","title":"Internal links & deep linking"},"http://127.0.0.1:1111/content/multilingual/":{"body":"Zola supports having a site in multiple languages.\nConfiguration \nTo get started, you will need to add the languages you want to support\nto your config.toml. For example:\nlanguages = [\n {code = \"fr\", feed = true}, # there will be a feed for French content\n {code = \"fr\", search = true}, # there will be a Search Index for French content\n {code = \"it\"}, # there won't be a feed for Italian content\n]\n\nIf you want to use per-language taxonomies, ensure you set the lang field in their\nconfiguration.\nNote: By default, Chinese and Japanese search indexing is not included. You can include\nthe support by building zola using cargo build --features search/indexing-ja search/indexing-zh.\nPlease also note that, enabling Chinese indexing will increase the binary size by approximately\n5 MB while enabling Japanese indexing will increase the binary size by approximately 70 MB \ndue to the incredibly large dictionaries.\nContent \nOnce the languages have been added, you can start to translate your content. Zola\nuses the filename to detect the language:\n\ncontent/an-article.md: this will be the default language\ncontent/an-article.fr.md: this will be in French\n\nIf the language code in the filename does not correspond to one of the languages or\nthe default language configured, an error will be shown.\nIf your default language has an _index.md in a directory, you will need to add an _index.{code}.md\nfile with the desired front-matter options as there is no language fallback.\nOutput \nZola outputs the translated content with a base URL of {base_url}/{code}/.\nThe only exception to this is if you are setting a translated page path directly in the front matter.\n","id":"http://127.0.0.1:1111/content/multilingual/","title":"Multilingual sites"},"http://127.0.0.1:1111/content/overview/":{"body":"Zola uses the directory structure to determine the site structure.\nEach child directory in the content directory represents a section\nthat contains pages (your .md files).\n.\n└── content\n ├── content\n │   └── something.md // -> https://mywebsite.com/content/something/\n ├── blog\n │   ├── cli-usage.md // -> https://mywebsite.com/blog/cli-usage/\n │   ├── configuration.md // -> https://mywebsite.com/blog/configuration/\n │   ├── directory-structure.md // -> https://mywebsite.com/blog/directory-structure/\n │   ├── _index.md // -> https://mywebsite.com/blog/\n │   └── installation.md // -> https://mywebsite.com/blog/installation/\n └── landing\n └── _index.md // -> https://mywebsite.com/landing/\n\nEach page path (the part after base_url, for example blog/cli-usage/) can be customised by changing the path or\nslug attribute of the page front-matter.\nYou might have noticed a file named _index.md in the example above.\nThis file is used to store both the metadata and content of the section itself and is not considered a page.\nTo ensure that the terminology used in the rest of the documentation is understood, let's go over the example above.\nThe content directory in this case has three sections: content, blog and landing. The content section has only\none page (something.md), the landing section has no pages and the blog section has 4 pages (cli-usage.md,\nconfiguration.md, directory-structure.md and installation.md).\nSections can be nested indefinitely.\nAsset colocation \nThe content directory is not limited to markup files. It's natural to want to co-locate a page and some related\nassets, such as images or spreadsheets. Zola supports this pattern out of the box for both sections and pages.\nAll non-Markdown files you add in a page/section directory will be copied alongside the generated page when the site is\nbuilt, which allows us to use a relative path to access them.\nPages with co-located assets should not be placed directly in their section directory (such as latest-experiment.md), but\nas an index.md file in a dedicated directory (latest-experiment/index.md), like so:\n└── research\n ├── latest-experiment\n │ ├── index.md\n │ └── yavascript.js\n ├── _index.md\n └── research.jpg\n\nWith this setup, you may access research.jpg from your 'research' section\nand yavascript.js from your 'latest-experiment' page directly within the Markdown:\nCheck out the complete program [here](yavascript.js). It's **really cool free-software**!\n\nBy default, this page's slug will be the directory name and thus its permalink will be https://example.com/research/latest-experiment/.\nExcluding files from assets \nIt is possible to ignore selected asset files using the\nignored_content setting in the config file.\nFor example, say that you have an Excel spreadsheet from which you are taking several screenshots and\nthen linking to these image files on your website. For maintainability, you want to keep\nthe spreadsheet in the same directory as the Markdown file, but you don't want to copy the spreadsheet to\nthe public web site. You can achieve this by setting ignored_content in the config file:\nignored_content = [\"*.xlsx\"]\n\nStatic assets \nIn addition to placing content files in the content directory, you may also place content\nfiles in the static directory. Any files/directories that you place in the static directory\nwill be copied, without modification, to the public directory.\nTypically, you might put site-wide assets (such as the site favicon, site logos or site-wide\nJavaScript) in the root of the static directory. You can also place any HTML or other files that\nyou wish to be included without modification (that is, without being parsed as Markdown files)\ninto the static directory.\nNote that the static directory provides an alternative to co-location. For example, imagine that you\nhad the following directory structure (a simplified version of the structure presented above):\n.\n└── content\n └── blog\n    ├── configuration\n │    └── index.md // -> https://mywebsite.com/blog/configuration/\n    └── _index.md // -> https://mywebsite.com/blog/\n\nTo add an image to the https://mywebsite.com/blog/configuration page, you have three options:\n\nYou could save the image to the content/blog/configuration directory and then link to it with a\nrelative path from the index.md page. This is the approach described under co-location\nabove.\nYou could save the image to a static/blog/configuration directory and link to it in exactly the\nsame way as if you had co-located it. If you do this, the generated files will be identical to those\nobtained if you had co-located the image; the only difference will be that all static files will be saved in the\nstatic directory rather than in the content directory. The choice depends on your organizational needs.\nOr you could save the image to some arbitrary directory within the static directory. For example,\nyou could save all images to static/images. Using this approach, you can no longer use relative links. Instead,\nyou must use an absolute link to images/[filename] to access your\nimage. This might be preferable for small sites or for sites that associate images with\nmultiple pages (e.g., logo images that appear on every page).\n\n","id":"http://127.0.0.1:1111/content/overview/","title":"Overview"},"http://127.0.0.1:1111/content/page/":{"body":"A page is any file ending with .md in the content directory, except files\nnamed _index.md.\nIf a file ending with .md is named index.md, it will generate a page\nwith the name of its directory (for example, /content/about/index.md would\ncreate a page at [base_url]/about). (Note the lack of an underscore; if the file\nwere named _index.md, then it would create a section at [base_url]/about, as\ndiscussed in a previous part of this documentation. In contrast, naming the file index.md will\ncreate a page at [base_url]/about).\nIf the file is given any name other than index.md or _index.md, then it will\ncreate a page with that name (without the .md). For example, naming a file in the root of your\ncontent directory about.md would create a page at [base_url]/about.\nAnother exception to this rule is that a filename starting with a datetime (YYYY-mm-dd or an RFC3339 datetime) followed by\nan underscore (_) or a dash (-) will use that date as the page date, unless already set\nin the front matter. The page name will be anything after _/-, so the file 2018-10-10-hello-world.md will\nbe available at [base_url]/hello-world. Note that the full RFC3339 datetime contains colons, which is not a valid\ncharacter in a filename on Windows.\nAs you can see, creating an about.md file is equivalent to creating an\nabout/index.md file. The only difference between the two methods is that creating\nthe about directory allows you to use asset co-location, as discussed in the\noverview section.\nOutput paths \nFor any page within your content folder, its output path will be defined by either:\n\nits slug frontmatter key\nits filename\n\nEither way, these proposed path will be sanitized before being used.\nIf slugify.paths is set to \"on\" in the site's config - the default - paths are slugified. \nIf it is set to \"safe\", only sanitation is performed, with the following characters being removed: <, >, :, /, |, ?, *, #, \\\\, (, ), [, ] as well as newlines and tabulations. This ensures that the path can be represented on all operating systems.\nAdditionally, trailing whitespace and dots are removed and whitespaces are replaced by _.\nIf slugify.paths is set to \"off\", no modifications are made.\nIf you want URLs containing non-ASCII characters, slugify.paths needs to be set to \"safe\" or \"off\".\nPath from frontmatter \nThe output path for the page will first be read from the slug key in the page's frontmatter.\nExample: (file content/zines/mlf-kurdistan.md)\n+++\ntitle = \"Le mouvement des Femmes Libres, à la tête de la libération kurde\"\nslug = \"femmes-libres-libération-kurde\"\n+++\nThis is my article.\n\nThis frontmatter will output the article to [base_url]/zines/femmes-libres-libération-kurde with slugify.paths set to \"safe\" or \"off\", and to [base_url]/zines/femmes-libres-liberation-kurde with the default value for slugify.paths of \"on\".\nPath from filename \nWhen the article's output path is not specified in the frontmatter, it is extracted from the file's path in the content folder. Consider a file content/foo/bar/thing.md. The output path is constructed:\n\nif the filename is index.md, its parent folder name (bar) is used as output path\notherwise, the output path is extracted from thing (the filename without the .md extension)\n\nIf the path found starts with a datetime string (YYYY-mm-dd or a RFC3339 datetime) followed by an underscore (_) or a dash (-), this date is removed from the output path and will be used as the page date (unless already set in the front-matter). Note that the full RFC3339 datetime contains colons, which is not a valid character in a filename on Windows.\nThe output path extracted from the file path is then slugified or not, depending on the slugify.paths config, as explained previously.\nExample:\nThe file content/blog/2018-10-10-hello-world.md will yield a page at [base_url]/blog/hello-world.\nFront matter \nThe TOML front matter is a set of metadata embedded in a file at the beginning of the file enclosed\nby triple pluses (+++).\nAlthough none of the front matter variables are mandatory, the opening and closing +++ are required.\nNote that even though the use of TOML is encouraged, YAML front matter is also supported to ease porting\nlegacy content. In this case the embedded metadata must be enclosed by triple minuses (---).\nHere is an example page with all the available variables. The values provided below are the\ndefault values.\ntitle = \"\"\ndescription = \"\"\n\n# The date of the post.\n# Two formats are allowed: YYYY-MM-DD (2012-10-02) and RFC3339 (2002-10-02T15:00:00Z).\n# Do not wrap dates in quotes; the line below only indicates that there is no default date.\n# If the section variable `sort_by` is set to `date`, then any page that lacks a `date`\n# will not be rendered.\n# Setting this overrides a date set in the filename.\ndate =\n\n# The last updated date of the post, if different from the date.\n# Same format as `date`.\nupdated =\n\n# The weight as defined on the Section page of the documentation.\n# If the section variable `sort_by` is set to `weight`, then any page that lacks a `weight`\n# will not be rendered.\nweight = 0\n\n# A draft page is only loaded if the `--drafts` flag is passed to `zola build`, `zola serve` or `zola check`.\ndraft = false\n\n# If set, this slug will be instead of the filename to make the URL.\n# The section path will still be used.\nslug = \"\"\n\n# The path the content will appear at.\n# If set, it cannot be an empty string and will override both `slug` and the filename.\n# The sections' path won't be used.\n# It should not start with a `/` and the slash will be removed if it does.\npath = \"\"\n\n# Use aliases if you are moving content but want to redirect previous URLs to the\n# current one. This takes an array of paths, not URLs.\naliases = []\n\n# When set to \"true\", the page will be in the search index. This is only used if\n# `build_search_index` is set to \"true\" in the Zola configuration and the parent section\n# hasn't set `in_search_index` to \"false\" in its front matter.\nin_search_index = true\n\n# Template to use to render this page.\ntemplate = \"page.html\"\n\n# The taxonomies for this page. The keys need to be the same as the taxonomy\n# names configured in `config.toml` and the values are an array of String objects. For example,\n# tags = [\"rust\", \"web\"].\n[taxonomies]\n\n# Your own data.\n[extra]\n\nSummary \nYou can ask Zola to create a summary if, for example, you only want to show the first\nparagraph of the page content in a list.\nTo do so, add <!-- more --> in your content at the point\nwhere you want the summary to end. The content up to that point will be\navailable separately in the\ntemplate.\nA span element in this position with a continue-reading id is created, so you can link directly to it if needed. For example:\n<a href=\"{{ page.permalink }}#continue-reading\">Continue Reading</a>.\n","id":"http://127.0.0.1:1111/content/page/","title":"Page"},"http://127.0.0.1:1111/content/sass/":{"body":"Sass is a popular CSS preprocessor that adds special features (e.g., variables, nested rules) to facilitate the\nmaintenance of large sets of CSS rules. If you're curious about what Sass\nis and why it might be useful for styling your static site, the following links\nmay be of interest:\n\nThe official Sass website\nWhy Sass?, by Dan Cederholm\n\nUsing Sass in Zola \nZola processes any files with the sass or scss extension in the sass\nfolder, and places the processed output into a css file with the same folder\nstructure and base name into the public folder:\n.\n└── sass\n ├── style.scss // -> ./public/style.css\n ├── indented_style.sass // -> ./public/indented_style.css\n ├── _include.scss # This file won't get put into the `public` folder, but other files can @import it.\n ├── assets\n │ ├── fancy.scss // -> ./public/assets/fancy.css\n │ ├── same_name.scss // -> ./public/assets/same_name.css\n │ ├── same_name.sass # CONFLICT! This has the same base name as the file above, so Zola will return an error.\n │ └── _common_mixins.scss # This file won't get put into the `public` folder, but other files can @import it.\n └── secret-side-project\n └── style.scss // -> ./public/secret-side-project/style.css\n\nFiles with a leading underscore in the name are not placed into the public\nfolder, but can still be used as @import dependencies. For more information, see the \"Partials\" section of\nSass Basics.\nFiles with the scss extension use \"Sassy CSS\" syntax,\nwhile files with the sass extension use the \"indented\" syntax: https://sass-lang.com/documentation/syntax.\nZola will return an error if scss and sass files with the same\nbase name exist in the same folder to avoid confusion -- see the example above.\n","id":"http://127.0.0.1:1111/content/sass/","title":"Sass"},"http://127.0.0.1:1111/content/search/":{"body":"Zola can build a search index from the sections and pages content to\nbe used by a JavaScript library such as elasticlunr.\nTo enable it, you only need to set build_search_index = true in your config.toml and Zola will\ngenerate an index for the default_language set for all pages not excluded from the search index.\nIt is very important to set the default_language in your config.toml if you are writing a site not in\nEnglish; the index building pipelines are very different depending on the language.\nAfter zola build or zola serve, you should see two files in your static directory:\n\nsearch_index.${default_language}.js: so search_index.en.js for a default setup\nelasticlunr.min.js\n\nAs each site will be different, Zola makes no assumptions about your search function and doesn't provide\nthe JavaScript/CSS code to do an actual search and display results. You can look at how this site\nimplements it to get an idea: search.js.\nConfiguring the search index \nIn some cases, the default indexing strategy is not suitable. You can customise which fields to include and whether\nto truncate the content in the search configuration.\n","id":"http://127.0.0.1:1111/content/search/","title":"Search"},"http://127.0.0.1:1111/content/section/":{"body":"A section is created whenever a directory (or subdirectory) in the content section contains an\n_index.md file. If a directory does not contain an _index.md file, no section will be\ncreated, but Markdown files within that directory will still create pages (known as orphan pages).\nThe index page (i.e., the page displayed when a user browses to your base_url) is a section,\nwhich is created whether or not you add an _index.md file at the root of your content directory.\nIf you do not create an _index.md file in your content directory, this main content section will\nnot have any content or metadata. If you would like to add content or metadata, you can add an\n_index.md file at the root of the content directory and edit it just as you would edit any other\n_index.md file; your index.html template will then have access to that content and metadata.\nAny non-Markdown file in a section directory is added to the assets collection of the section, as explained in the\ncontent overview. These files are then available in the\nMarkdown file using relative links.\nDrafting \nJust like pages sections can be drafted by setting the draft option in the front matter. By default this is not done. When a section is drafted it's descendants like pages, subsections and assets will not be processed unless the --drafts flag is passed. Note that even pages that don't have a draft status will not be processed if one of their parent sections is drafted. \nFront matter \nThe _index.md file within a directory defines the content and metadata for that section. To set\nthe metadata, add front matter to the file.\nThe TOML front matter is a set of metadata embedded in a file at the beginning of the file enclosed by triple pluses (+++).\nAfter the closing +++, you can add content, which will be parsed as Markdown and made available\nto your templates through the section.content variable.\nAlthough none of the front matter variables are mandatory, the opening and closing +++ are required.\nNote that even though the use of TOML is encouraged, YAML front matter is also supported to ease porting\nlegacy content. In this case the embedded metadata must be enclosed by triple minuses (---).\nHere is an example _index.md with all the available variables. The values provided below are the\ndefault values.\ntitle = \"\"\n\ndescription = \"\"\n\n# A draft section is only loaded if the `--drafts` flag is passed to `zola build`, `zola serve` or `zola check`.\ndraft = false\n\n# Used to sort pages by \"date\", \"weight\" or \"none\". See below for more information.\nsort_by = \"none\"\n\n# Used by the parent section to order its subsections.\n# Lower values have higher priority.\nweight = 0\n\n# Template to use to render this section page.\ntemplate = \"section.html\"\n\n# The given template is applied to ALL pages below the section, recursively.\n# If you have several nested sections, each with a page_template set, the page\n# will always use the closest to itself.\n# However, a page's own `template` variable will always have priority.\n# Not set by default.\npage_template =\n\n# This sets the number of pages to be displayed per paginated page.\n# No pagination will happen if this isn't set or if the value is 0.\npaginate_by = 0\n\n# If set, this will be the path used by the paginated page. The page number will be appended after this path.\n# The default is page/1.\npaginate_path = \"page\"\n\n# This determines whether to insert a link for each header like the ones you can see on this site if you hover over\n# a header.\n# The default template can be overridden by creating an `anchor-link.html` file in the `templates` directory.\n# This value can be \"left\", \"right\" or \"none\".\ninsert_anchor_links = \"none\"\n\n# If set to \"true\", the section pages will be in the search index. This is only used if\n# `build_search_index` is set to \"true\" in the Zola configuration file.\nin_search_index = true\n\n# If set to \"true\", the section homepage is rendered.\n# Useful when the section is used to organize pages (not used directly).\nrender = true\n\n# This determines whether to redirect when a user lands on the section. Defaults to not being set.\n# Useful for the same reason as `render` but when you don't want a 404 when\n# landing on the root section page.\n# Example: redirect_to = \"documentation/content/overview\"\nredirect_to = \n\n# If set to \"true\", the section will pass its pages on to the parent section. Defaults to `false`.\n# Useful when the section shouldn't split up the parent section, like\n# sections for each year under a posts section.\ntransparent = false\n\n# Use aliases if you are moving content but want to redirect previous URLs to the\n# current one. This takes an array of paths, not URLs.\naliases = []\n\n# If set to \"true\", a feed file will be generated for this section at the\n# section's root path. This is independent of the site-wide variable of the same\n# name. The section feed will only include posts from that respective feed, and\n# not from any other sections, including sub-sections under that section.\ngenerate_feed = false\n\n# Your own data.\n[extra]\n\nKeep in mind that any configuration options apply only to the direct pages, not to the subsections' pages.\nPagination \nTo enable pagination for a section's pages, set paginate_by to a positive number. See\npagination template documentation for more information\non what variables are available in the template.\nYou can also change the pagination path (the word displayed while paginated in the URL, like page/1)\nby setting the paginate_path variable, which defaults to page.\nSorting \nIt is very common for Zola templates to iterate over pages or sections\nto display all pages/sections in a given directory. Consider a very simple\nexample: a blog directory with three files: blog/Post_1.md,\nblog/Post_2.md and blog/Post_3.md. To iterate over these posts and\ncreate a list of links to the posts, a simple template might look like this:\n{% for post in section.pages %}\n <h1><a href=\"{{ post.permalink }}\">{{ post.title }}</a></h1>\n{% endfor %}\n\nThis would iterate over the posts in the order specified\nby the sort_by variable set in the _index.md page for the corresponding\nsection. The sort_by variable can be given one of three values: date,\nweight or none. If sort_by is not set, the pages will be\nsorted in the none order, which is not intended for sorted content.\nAny page that is missing the data it needs to be sorted will be ignored and\nwon't be rendered. For example, if a page is missing the date variable and its\nsection sets sort_by = \"date\", then that page will be ignored.\nThe terminal will warn you if this occurs.\nIf several pages have the same date/weight/order, their permalink will be used\nto break the tie based on alphabetical order.\nSorting pages \nThe sort_by front-matter variable can have the following values:\ndate \nThis will sort all pages by their date field, from the most recent (at the\ntop of the list) to the oldest (at the bottom of the list). Each page will\nget page.earlier and page.later variables that contain the pages with\nearlier and later dates, respectively.\nweight \nThis will be sort all pages by their weight field, from lightest weight\n(at the top of the list) to heaviest (at the bottom of the list). Each\npage gets page.lighter and page.heavier variables that contain the\npages with lighter and heavier weights, respectively.\nReversed sorting \nWhen iterating through pages, you may wish to use the Tera reverse filter,\nwhich reverses the order of the pages. For example, after using the reverse filter,\npages sorted by weight will be sorted from lightest (at the top) to heaviest\n(at the bottom); pages sorted by date will be sorted from oldest (at the top)\nto newest (at the bottom).\nreverse has no effect on page.later/page.earlier or page.heavier/page.lighter.\nIf the section is paginated the paginate_reversed=true in the front matter of the relevant section should be set instead of using the filter. \nSorting subsections \nSorting sections is a bit less flexible: sections can only be sorted by weight,\nand do not have variables that point to the heavier/lighter sections.\nBy default, the lightest (lowest weight) subsections will be at\nthe top of the list and the heaviest (highest weight) will be at the bottom;\nthe reverse filter reverses this order.\nNote: Unlike pages, permalinks will not be used to break ties between\nequally weighted sections. Thus, if the weight variable for your section is not set (or if it\nis set in a way that produces ties), then your sections will be sorted in\nrandom order. Moreover, that order is determined at build time and will\nchange with each site rebuild. Thus, if there is any chance that you will\niterate over your sections, you should always assign them a weight.\n","id":"http://127.0.0.1:1111/content/section/","title":"Section"},"http://127.0.0.1:1111/content/shortcodes/":{"body":"Zola borrows the concept of shortcodes from WordPress.\nIn our case, a shortcode corresponds to a template defined in the templates/shortcodes directory or\na built-in one that can be used in a Markdown file. If you want to use something similar to shortcodes in your templates,\ntry Tera macros.\nBroadly speaking, Zola's shortcodes cover two distinct use cases:\n\nInject more complex HTML: Markdown is good for writing, but it isn't great when you need add inline HTML or styling.\nEase repetitive data based tasks: when you have external data that you\nwant to display in your page's body.\n\nThe latter may also be solved by writing HTML, however Zola allows the use of Markdown based shortcodes which end in .md\nrather than .html. This may be particularly useful if you want to include headings generated by the shortcode in the\ntable of contents.\nWriting a shortcode \nLet's write a shortcode to embed YouTube videos as an example.\nIn a file called youtube.html in the templates/shortcodes directory, paste the\nfollowing:\n<div {% if class %}class=\"{{class}}\"{% endif %}>\n <iframe\n src=\"https://www.youtube.com/embed/{{id}}{% if autoplay %}?autoplay=1{% endif %}\"\n webkitallowfullscreen\n mozallowfullscreen\n allowfullscreen>\n </iframe>\n</div>\n\nThis template is very straightforward: an iframe pointing to the YouTube embed URL wrapped in a <div>.\nIn terms of input, this shortcode expects at least one variable: id. Because the other variables\nare in an if statement, they are optional.\nThat's it. Zola will now recognise this template as a shortcode named youtube (the filename minus the .html extension).\nThe Markdown renderer will wrap an inline HTML node such as <a> or <span> into a paragraph.\nIf you want to disable this behaviour, wrap your shortcode in a <div>.\nA Markdown based shortcode in turn will be treated as if what it returned was part of the page's body. If we create\nbooks.md in templates/shortcodes for example:\n{% set data = load_data(path=path) -%}\n{% for book in data.books %}\n### {{ book.title }}\n\n{{ book.description | safe }}\n{% endfor %}\n\nThis will create a shortcode books with the argument path pointing to a .toml file where it loads lists of books with\ntitles and descriptions. They will flow with the rest of the document in which books is called.\nShortcodes are rendered before the page's Markdown is parsed so they don't have access to the page's table of contents.\nBecause of that, you also cannot use the get_page/get_section/get_taxonomy global functions. It might work while\nrunning zola serve because it has been loaded but it will fail during zola build.\nUsing shortcodes \nThere are two kinds of shortcodes:\n\nones that do not take a body, such as the YouTube example above\nones that do, such as one that styles a quote\n\nIn both cases, the arguments must be named and they will all be passed to the template.\nLastly, a shortcode name (and thus the corresponding .html file) as well as the argument names\ncan only contain numbers, letters and underscores, or in Regex terms [0-9A-Za-z_].\nAlthough theoretically an argument name could be a number, it will not be possible to use such an argument in the template.\nArgument values can be of one of five types:\n\nstring: surrounded by double quotes, single quotes or backticks\nbool: true or false\nfloat: a number with a decimal point (e.g., 1.2)\ninteger: a whole number or its negative counterpart (e.g., 3)\narray: an array of any kind of value, except arrays\n\nMalformed values will be silently ignored.\nBoth types of shortcode will also get either a page or section variable depending on where they were used\nand a config variable. These values will overwrite any arguments passed to a shortcode so these variable names\nshould not be used as argument names in shortcodes.\nShortcodes without body \nSimply call the shortcode as if it was a Tera function in a variable block. All the examples below are valid\ncalls of the YouTube shortcode.\nHere is a YouTube video:\n\n{{ youtube(id=\"dQw4w9WgXcQ\") }}\n\n{{ youtube(id=\"dQw4w9WgXcQ\", autoplay=true) }}\n\nAn inline {{ youtube(id=\"dQw4w9WgXcQ\", autoplay=true, class=\"youtube\") }} shortcode\n\nNote that if you want to have some content that looks like a shortcode but not have Zola try to render it,\nyou will need to escape it by using {{/* and */}} instead of {{ and }}.\nShortcodes with body \nLet's imagine that we have the following shortcode quote.html template:\n<blockquote>\n {{ body }} <br>\n -- {{ author}}\n</blockquote>\n\nWe could use it in our Markdown file like so:\nAs someone said:\n\n{% quote(author=\"Vincent\") %}\nA quote\n{% end %}\n\nThe body of the shortcode will be automatically passed down to the rendering context as the body variable and needs\nto be on a new line.\nIf you want to have some content that looks like a shortcode but not have Zola try to render it,\nyou will need to escape it by using {%/* and */%} instead of {% and %}. You won't need to escape\nanything else until the closing tag.\nInvocation Count \nEvery shortcode context is passed in a variable named nth that tracks how many times a particular shortcode has\nbeen invoked in a Markdown file. Given a shortcode true_statement.html template:\n<p id=\"number{{ nth }}\">{{ value }} is equal to {{ nth }}.</p>\n\nIt could be used in our Markdown as follows:\n{{ true_statement(value=1) }}\n{{ true_statement(value=2) }}\n\nThis is useful when implementing custom markup for features such as sidenotes or end notes.\nBuilt-in shortcodes \nZola comes with a few built-in shortcodes. If you want to override a default shortcode template,\nsimply place a {shortcode_name}.html file in the templates/shortcodes directory and Zola will\nuse that instead.\nYouTube \nEmbed a responsive player for a YouTube video.\nThe arguments are:\n\nid: the video id (mandatory)\nclass: a class to add to the <div> surrounding the iframe\nautoplay: when set to \"true\", the video autoplays on load\n\nUsage example:\n{{ youtube(id=\"dQw4w9WgXcQ\") }}\n\n{{ youtube(id=\"dQw4w9WgXcQ\", autoplay=true) }}\n\n{{ youtube(id=\"dQw4w9WgXcQ\", autoplay=true, class=\"youtube\") }}\n\nResult example:\n\n \n\nVimeo \nEmbed a player for a Vimeo video.\nThe arguments are:\n\nid: the video id (mandatory)\nclass: a class to add to the <div> surrounding the iframe\n\nUsage example:\n{{ vimeo(id=\"124313553\") }}\n\n{{ vimeo(id=\"124313553\", class=\"vimeo\") }}\n\nResult example:\n\n \n\nStreamable \nEmbed a player for a Streamable video.\nThe arguments are:\n\nid: the video id (mandatory)\nclass: a class to add to the <div> surrounding the iframe\n\nUsage example:\n{{ streamable(id=\"92ok4\") }}\n\n{{ streamable(id=\"92ok4\", class=\"streamble\") }}\n\nResult example:\n\n \n\nGist \nEmbed a Github gist.\nThe arguments are:\n\nurl: the url to the gist (mandatory)\nfile: by default, the shortcode will pull every file from the URL unless a specific filename is requested\nclass: a class to add to the <div> surrounding the iframe\n\nUsage example:\n{{ gist(url=\"https://gist.github.com/Keats/e5fb6aad409f28721c0ba14161644c57\") }}\n\n{{ gist(url=\"https://gist.github.com/Keats/e5fb6aad409f28721c0ba14161644c57\", class=\"gist\") }}\n\nResult example:\n\n \n\n","id":"http://127.0.0.1:1111/content/shortcodes/","title":"Shortcodes"},"http://127.0.0.1:1111/content/syntax-highlighting/":{"body":"Zola comes with built-in syntax highlighting but you first\nneed to enable it in the configuration\nOnce this is done, Zola will automatically highlight all code blocks\nin your content. A code block in Markdown looks like the following:\n\n```rust\nlet highlight = true;\n```\n\n\nYou can replace rust with another language or not put anything to get the text\ninterpreted as plain text.\nHere is a full list of supported languages and their short names:\n- ActionScript -> [\"as\"]\n- Advanced CSV -> [\"csv\", \"tsv\"]\n- AppleScript -> [\"applescript\", \"script editor\"]\n- ASP -> [\"asa\"]\n- Assembly x86 (NASM) -> [\"asm\", \"inc\", \"nasm\"]\n- AWK -> [\"awk\"]\n- Batch File -> [\"bat\", \"cmd\"]\n- BibTeX -> [\"bib\"]\n- Bourne Again Shell (bash) -> [\".bash_aliases\", \".bash_completions\", \".bash_functions\", \".bash_login\", \".bash_logout\", \".bash_profile\", \".bash_variables\", \".bashrc\", \".ebuild\", \".eclass\", \".profile\", \".textmate_init\", \".zlogin\", \".zlogout\", \".zprofile\", \".zshenv\", \".zshrc\", \"PKGBUILD\", \"ash\", \"bash\", \"sh\", \"zsh\"]\n- C -> [\"c\", \"h\"]\n- C# -> [\"cs\", \"csx\"]\n- C++ -> [\"C\", \"c++\", \"cc\", \"cp\", \"cpp\", \"cxx\", \"h\", \"h++\", \"hh\", \"hpp\", \"hxx\", \"inl\", \"ipp\"]\n- ClojureC -> [\"boot\", \"clj\", \"cljc\", \"cljs\", \"cljx\"]\n- CMake -> [\"CMakeLists.txt\", \"cmake\"]\n- CMake C Header -> [\"h.in\"]\n- CMake C++ Header -> [\"h++.in\", \"hh.in\", \"hpp.in\", \"hxx.in\"]\n- CMakeCache -> [\"CMakeCache.txt\"]\n- Crystal -> [\"cr\"]\n- CSS -> [\"css\", \"css.erb\", \"css.liquid\"]\n- D -> [\"d\", \"di\"]\n- Dart -> [\"dart\"]\n- Diff -> [\"diff\", \"patch\"]\n- Dockerfile -> [\"Dockerfile\", \"dockerfile\"]\n- EDN -> [\"edn\"]\n- Elixir -> [\"ex\", \"exs\"]\n- Elm -> [\"elm\"]\n- Erlang -> [\"Emakefile\", \"emakefile\", \"erl\", \"escript\", \"hrl\"]\n- F# -> [\"fs\", \"fsi\", \"fsx\"]\n- Fortran (Fixed Form) -> [\"F\", \"F77\", \"FOR\", \"FPP\", \"f\", \"f77\", \"for\", \"fpp\"]\n- Fortran (Modern) -> [\"F03\", \"F08\", \"F90\", \"F95\", \"f03\", \"f08\", \"f90\", \"f95\"]\n- Fortran Namelist -> [\"namelist\"]\n- Friendly Interactive Shell (fish) -> [\"fish\"]\n- GDScript (Godot Engine) -> [\"gd\"]\n- Generic Config -> [\".dircolors\", \".gitattributes\", \".gitignore\", \".gitmodules\", \".inputrc\", \"Doxyfile\", \"cfg\", \"conf\", \"config\", \"dircolors\", \"gitattributes\", \"gitignore\", \"gitmodules\", \"ini\", \"inputrc\", \"mak\", \"mk\", \"pro\"]\n- Git Attributes -> [\".gitattributes\", \"attributes\", \"gitattributes\"]\n- Git Commit -> [\"COMMIT_EDITMSG\", \"MERGE_MSG\", \"TAG_EDITMSG\"]\n- Git Config -> [\".gitconfig\", \".gitmodules\", \"gitconfig\"]\n- Git Ignore -> [\".gitignore\", \"exclude\", \"gitignore\"]\n- Git Link -> [\".git\"]\n- Git Log -> [\"gitlog\"]\n- Git Mailmap -> [\".mailmap\", \"mailmap\"]\n- Git Rebase Todo -> [\"git-rebase-todo\"]\n- GLSL -> [\"comp\", \"frag\", \"fs\", \"fsh\", \"fshader\", \"geom\", \"glsl\", \"gs\", \"gsh\", \"gshader\", \"tesc\", \"tese\", \"vert\", \"vs\", \"vsh\", \"vshader\"]\n- Go -> [\"go\"]\n- GraphQL -> [\"gql\", \"graphql\", \"graphqls\"]\n- Graphviz (DOT) -> [\"DOT\", \"dot\", \"gv\"]\n- Groovy -> [\"Jenkinsfile\", \"gradle\", \"groovy\", \"gvy\"]\n- Handlebars -> [\"handlebars\", \"handlebars.html\", \"hbr\", \"hbrs\", \"hbs\", \"hdbs\", \"hjs\", \"mu\", \"mustache\", \"rac\", \"stache\", \"template\", \"tmpl\"]\n- Haskell -> [\"hs\"]\n- HTML -> [\"htm\", \"html\", \"shtml\", \"xhtml\"]\n- HTML (ASP) -> [\"asp\"]\n- HTML (EEx) -> [\"html.eex\", \"html.leex\"]\n- HTML (Erlang) -> [\"yaws\"]\n- HTML (Jinja2) -> [\"htm.j2\", \"html.j2\", \"xhtml.j2\", \"xml.j2\"]\n- HTML (Rails) -> [\"erb\", \"html.erb\", \"rails\", \"rhtml\"]\n- HTML (Tcl) -> [\"adp\"]\n- Java -> [\"bsh\", \"java\"]\n- Java Properties -> [\"properties\"]\n- Java Server Page (JSP) -> [\"jsp\"]\n- JavaScript -> [\"htc\", \"js\"]\n- JavaScript (Rails) -> [\"js.erb\"]\n- Jinja2 -> [\"j2\", \"jinja\", \"jinja2\"]\n- JSON -> [\"Pipfile.lock\", \"ipynb\", \"json\", \"sublime-build\", \"sublime-color-scheme\", \"sublime-commands\", \"sublime-completions\", \"sublime-keymap\", \"sublime-macro\", \"sublime-menu\", \"sublime-mousemap\", \"sublime-project\", \"sublime-settings\", \"sublime-theme\"]\n- Julia -> [\"jl\"]\n- Kotlin -> [\"kt\", \"kts\"]\n- LaTeX -> [\"ltx\", \"tex\"]\n- Less -> [\"css.less\", \"less\"]\n- Linker Script -> [\"ld\"]\n- Lisp -> [\"cl\", \"clisp\", \"el\", \"fasl\", \"l\", \"lisp\", \"lsp\", \"mud\", \"scm\", \"ss\"]\n- Literate Haskell -> [\"lhs\"]\n- lrc -> [\"lrc\", \"lyric\"]\n- Lua -> [\"lua\"]\n- Makefile -> [\"GNUmakefile\", \"Makefile\", \"Makefile.am\", \"Makefile.in\", \"OCamlMakefile\", \"mak\", \"make\", \"makefile\", \"makefile.am\", \"makefile.in\", \"mk\"]\n- Markdown -> [\"markdn\", \"markdown\", \"md\", \"mdown\"]\n- MATLAB -> [\"matlab\"]\n- MiniZinc (MZN) -> [\"dzn\", \"mzn\"]\n- NAnt Build File -> [\"build\"]\n- Nim -> [\"nim\", \"nims\"]\n- Nix -> [\"nix\"]\n- Objective-C -> [\"h\", \"m\"]\n- Objective-C++ -> [\"M\", \"h\", \"mm\"]\n- OCaml -> [\"ml\", \"mli\"]\n- OCamllex -> [\"mll\"]\n- OCamlyacc -> [\"mly\"]\n- Pascal -> [\"dpr\", \"p\", \"pas\"]\n- Perl -> [\"pc\", \"pl\", \"pm\", \"pmc\", \"pod\", \"t\"]\n- PHP -> [\"php\", \"php3\", \"php4\", \"php5\", \"php7\", \"phps\", \"phpt\", \"phtml\"]\n- Plain Text -> [\"txt\"]\n- PowerShell -> [\"ps1\", \"psd1\", \"psm1\"]\n- PureScript -> [\"purs\"]\n- Python -> [\"SConscript\", \"SConstruct\", \"Sconstruct\", \"Snakefile\", \"bazel\", \"bzl\", \"cpy\", \"gyp\", \"gypi\", \"pxd\", \"pxd.in\", \"pxi\", \"pxi.in\", \"py\", \"py3\", \"pyi\", \"pyw\", \"pyx\", \"pyx.in\", \"rpy\", \"sconstruct\", \"vpy\", \"wscript\"]\n- R -> [\"R\", \"Rprofile\", \"r\"]\n- Racket -> [\"rkt\"]\n- Rd (R Documentation) -> [\"rd\"]\n- Reason -> [\"re\", \"rei\"]\n- Regular Expression -> [\"re\"]\n- Regular Expressions (Elixir) -> [\"ex.re\"]\n- reStructuredText -> [\"rest\", \"rst\"]\n- Ruby -> [\"Appfile\", \"Appraisals\", \"Berksfile\", \"Brewfile\", \"Cheffile\", \"Deliverfile\", \"Fastfile\", \"Gemfile\", \"Guardfile\", \"Podfile\", \"Rakefile\", \"Rantfile\", \"Scanfile\", \"Snapfile\", \"Thorfile\", \"Vagrantfile\", \"capfile\", \"cgi\", \"config.ru\", \"fcgi\", \"gemspec\", \"irbrc\", \"jbuilder\", \"podspec\", \"prawn\", \"rabl\", \"rake\", \"rb\", \"rbx\", \"rjs\", \"ruby.rail\", \"simplecov\", \"thor\"]\n- Ruby Haml -> [\"haml\", \"sass\"]\n- Ruby on Rails -> [\"builder\", \"rxml\"]\n- Rust -> [\"rs\"]\n- Sass -> [\"sass\"]\n- Scala -> [\"sbt\", \"sc\", \"scala\"]\n- SCSS -> [\"scss\"]\n- SQL -> [\"ddl\", \"dml\", \"sql\"]\n- SQL (Rails) -> [\"erbsql\", \"sql.erb\"]\n- srt -> [\"srt\", \"subrip\"]\n- Stylus -> [\"styl\", \"stylus\"]\n- SWI-Prolog -> [\"pro\"]\n- Swift -> [\"swift\"]\n- Tcl -> [\"tcl\"]\n- TeX -> [\"cls\", \"sty\"]\n- Textile -> [\"textile\"]\n- TOML -> [\"Cargo.lock\", \"Gopkg.lock\", \"Pipfile\", \"tml\", \"toml\"]\n- TypeScript -> [\"ts\"]\n- TypeScriptReact -> [\"tsx\"]\n- VimL -> [\"vim\"]\n- XML -> [\"dtml\", \"opml\", \"rng\", \"rss\", \"svg\", \"tld\", \"xml\", \"xsd\", \"xslt\"]\n- YAML -> [\"sublime-syntax\", \"yaml\", \"yml\"]\n\nNote: due to some issues with the JavaScript syntax, the TypeScript syntax will be used instead.\nIf \nIf you want to highlight a language not on this list, please open an issue or a pull request on the Zola repo.\nAlternatively, the extra_syntaxes configuration option can be used to add additional syntax files.\nIf your site source is laid out as follows:\n.\n├── config.toml\n├── content/\n│   └── ...\n├── static/\n│   └── ...\n├── syntaxes/\n│   ├── Sublime-Language1/\n│   │   └── lang1.sublime-syntax\n│   └── lang2.sublime-syntax\n└── templates/\n └── ...\n\nyou would set your extra_syntaxes to [\"syntaxes\", \"syntaxes/Sublime-Language1\"] to load lang1.sublime-syntax and lang2.sublime-syntax.\n","id":"http://127.0.0.1:1111/content/syntax-highlighting/","title":"Syntax Highlighting"},"http://127.0.0.1:1111/content/table-of-contents/":{"body":"Each page/section will automatically generate a table of contents for itself based on the headers generated with markdown.\nIt is available in the template through the page.toc or section.toc variable.\nYou can view the template variables\ndocumentation for information on its structure.\nHere is an example of using that field to render a two-level table of contents:\n<ul>\n{% for h1 in page.toc %}\n <li>\n <a href=\"{{h1.permalink | safe}}\">{{ h1.title }}</a>\n {% if h1.children %}\n <ul>\n {% for h2 in h1.children %}\n <li>\n <a href=\"{{h2.permalink | safe}}\">{{ h2.title }}</a>\n </li>\n {% endfor %}\n </ul>\n {% endif %}\n </li>\n{% endfor %}\n</ul>\n\nWhile headers are neatly ordered in this example, it will work just as well with disjoint headers.\nNote that all existing HTML tags from the title will NOT be present in the table of contents to\navoid various issues.\n","id":"http://127.0.0.1:1111/content/table-of-contents/","title":"Table of Contents"},"http://127.0.0.1:1111/content/taxonomies/":{"body":"Zola has built-in support for taxonomies. Taxonomies are a way for users to group content according to user-defined categories.\nDefinitions \n\nTaxonomy: A category that can be used to group content \nTerm: A specific group within a taxonomy \nValue: A piece of content that can be associated with a term\n\nExample: a movie website \nImagine that you want to make a website to display information about various movies. In that case you could use the following taxonomies:\n\nDirector\nGenres\nAwards\nRelease year\n\nThen at build time Zola can create pages for each taxonomy listing all of the known terms as well as pages for each term in a taxonomy, listing all of the pieces of content associated with that term. \nImagine again we have the following movies: \n- Shape of water <--- Value\n - Director <--- Taxonomy\n - Guillermo Del Toro <--- Term\n - Genres <--- Taxonomy\n - Thriller <--- Term\n - Drama <--- Term\n - Awards <--- Taxonomy\n - Golden globe <--- Term\n - Academy award <--- Term\n - BAFTA <--- Term\n - Release year <--- Taxonomy\n - 2017 <--- Term\n \n- The Room: <--- Value\n - Director <--- Taxonomy\n - Tommy Wiseau <--- Term\n - Genres <--- Taxonomy\n - Romance <--- Term\n - Drama <--- Term\n - Release Year <--- Taxonomy\n - 2003 <--- Term\n\n- Bright <--- Value\n - Director <--- Taxonomy\n - David Ayer <--- Term\n - Genres <--- Taxonomy\n - Fantasy <--- Term\n - Action <--- Term\n - Awards <--- Taxonomy\n - California on Location Awards <--- Term\n - Release Year <--- Taxonomy\n - 2017 <--- Term\n\nIn this example the page for Release year would include links to pages for both 2003 and 2017, where the page for 2017 would list both Shape of Water and Bright.\nConfiguration \nA taxonomy has five variables:\n\nname: a required string that will be used in the URLs, usually the plural version (i.e., tags, categories, etc.)\npaginate_by: if this is set to a number, each term page will be paginated by this much.\npaginate_path: if set, this path will be used by the paginated page and the page number will be appended after it.\nFor example the default would be page/1.\nfeed: if set to true, a feed (atom by default) will be generated for each term.\nlang: only set this if you are making a multilingual site and want to indicate which language this taxonomy is for\n\nInsert into the configuration file (config.toml):\n⚠️ Place the taxonomies key in the main section and not in the [extra] section\nExample 1: (one language)\ntaxonomies = [\n { name = \"director\", feed = true},\n { name = \"genres\", feed = true},\n { name = \"awards\", feed = true},\n { name = \"release-year\", feed = true},\n]\n\nExample 2: (multilingual site)\ntaxonomies = [\n {name = \"director\", feed = true, lang = \"fr\"},\n {name = \"director\", feed = true, lang = \"eo\"},\n {name = \"director\", feed = true, lang = \"en\"},\n {name = \"genres\", feed = true, lang = \"fr\"},\n {name = \"genres\", feed = true, lang = \"eo\"},\n {name = \"genres\", feed = true, lang = \"en\"},\n {name = \"awards\", feed = true, lang = \"fr\"},\n {name = \"awards\", feed = true, lang = \"eo\"},\n {name = \"awards\", feed = true, lang = \"en\"},\n {name = \"release-year\", feed = true, lang = \"fr\"},\n {name = \"release-year\", feed = true, lang = \"eo\"},\n {name = \"release-year\", feed = true, lang = \"en\"},\n]\n\nUsing taxonomies \nOnce the configuration is done, you can then set taxonomies in your content and Zola will pick them up:\nExample:\n+++\ntitle = \"Shape of water\"\ndate = 2019-08-15 # date of the post, not the movie\n[taxonomies]\ndirector=[\"Guillermo Del Toro\"]\ngenres=[\"Thriller\",\"Drama\"]\nawards=[\"Golden Globe\", \"Academy award\", \"BAFTA\"]\nrelease-year = [\"2017\"]\n+++\n\nOutput paths \nIn a similar manner to how section and pages calculate their output path:\n\nthe taxonomy name is never slugified\nthe taxonomy term (e.g. as specific tag) is slugified when slugify.taxonomies is enabled (\"on\", the default) in the configuration\n\nThe taxonomy pages are then available at the following paths:\n$BASE_URL/$NAME/ (taxonomy)\n$BASE_URL/$NAME/$SLUG (taxonomy entry)\n\nNote that taxonomies are case insensitive so terms that have the same slug will get merged, e.g. sections and pages containing the tag \"example\" will be shown in the same taxonomy page as ones containing \"Example\" \n","id":"http://127.0.0.1:1111/content/taxonomies/","title":"Taxonomies"},"http://127.0.0.1:1111/deployment/":{"body":"","id":"http://127.0.0.1:1111/deployment/","title":"Deployment"},"http://127.0.0.1:1111/deployment/github-pages/":{"body":"By default, GitHub Pages uses Jekyll (a ruby based static site generator),\nbut you can also publish any generated files provided you have an index.html file in the root of a branch called\ngh-pages or master. In addition you can publish from a docs directory in your repository. That branch name can\nalso be manually changed in the settings of a repository.\nWe can use any continuous integration (CI) server to build and deploy our site. For example:\n\nGithub Actions\nTravis CI\n\nGithub Actions\nUsing Github Actions for the deployment of your Zola-Page on Github-Pages is pretty easy. You basically need three things:\n\nA Personal access token to give the Github Action the permission to push into your repository.\nCreate the Github Action.\nCheck the Github Pages section in repository settings.\n\nLet's start with the token.\nFor creating the token either click on here or go to Settings > Developer Settings > Personal access tokens. Under the Select Scopes section, give it repo permissions and click Generate token. Then copy the token, navigate to your repository and add in the Settings tab the Secret TOKEN and paste your token in it.\nNext we need to create the Github Action. Here we can make use of the zola-deploy-action. Go to the Actions tab of your repository, click on set up a workflow yourself to get a blank workflow file. Copy the following script into it and commit it afterwards.\n# On every push this script is executed\non: push\nname: Build and deploy GH Pages\njobs:\n build:\n name: shalzz/zola-deploy-action\n runs-on: ubuntu-latest\n steps:\n # Checkout\n - uses: actions/checkout@master\n # Build & deploy\n - name: shalzz/zola-deploy-action\n uses: shalzz/zola-deploy-action@v0.12.0\n env:\n # Target branch\n PAGES_BRANCH: gh-pages\n # Provide personal access token\n TOKEN: ${{ secrets.TOKEN }}\n\nThis script is pretty simple, because the zola-deploy-action is doing everything for you. You just need to provide some details. For more configuration options check out the README.\nBy commiting the action your first build is triggered. Wait until it's finished, then you should see in your repository a new branch gh-pages with the compiled Zola page in it.\nFinally we need to check the Github Pages section of the repository settings. Click on the Settings tab and scroll down to the Github Pages section. Check if the source is set to gh-pages branch and the directory is / (root). You should also see your Github Pages link.\nThere you can also configure a custom domain and Enforce HTTPS mode. Before configuring a custom domains, please check out this. \nTravis CI\nWe are going to use Travis CI to automatically publish the site. If you are not using Travis\nalready, you will need to login with the GitHub OAuth and activate Travis for the repository.\nDon't forget to also check if your repository allows GitHub Pages in its settings.\nEnsure that Travis can access your theme\nDepending on how you added your theme, Travis may not know how to access\nit. The best way to ensure that it will have full access to the theme is to use git\nsubmodules. When doing this, ensure that you are using the https version of the URL.\n$ git submodule add {THEME_URL} themes/{THEME_NAME}\n\nAllowing Travis to push to GitHub\nBefore pushing anything, Travis needs a Github private access key to make changes to your repository.\nIf you're already logged in to your account, just click here to go to\nyour tokens page.\nOtherwise, navigate to Settings > Developer Settings > Personal Access Tokens.\nGenerate a new token and give it any description you'd like.\nUnder the \"Select Scopes\" section, give it repo permissions. Click \"Generate token\" to finish up.\nYour token will now be visible.\nCopy it into your clipboard and head back to Travis.\nOnce on Travis, click on your project, and navigate to \"Settings\". Scroll down to \"Environment Variables\" and input a name of GH_TOKEN with a value of your access token.\nMake sure that \"Display value in build log\" is off, and then click add. Now Travis has access to your repository.\nSetting up Travis\nWe're almost done. We just need some scripts in a .travis.yml file to tell Travis what to do.\nNOTE: The script below assumes that we're taking the code from the code branch and will generate the HTML to be published in the master branch of the same repository. You're free to use any other branch for the Markdown files but if you want to use <username>.github.io or <org>.github.io, the destination branch MUST be master.\nlanguage: minimal\n\nbefore_script:\n # Download and unzip the zola executable\n # Replace the version numbers in the URL by the version you want to use\n - curl -s -L https://github.com/getzola/zola/releases/download/v0.9.0/zola-v0.9.0-x86_64-unknown-linux-gnu.tar.gz | sudo tar xvzf - -C /usr/local/bin\n\nscript:\n - zola build\n\n# If you are using a different folder than `public` for the output directory, you will\n# need to change the `zola` command and the `ghp-import` path\nafter_success: |\n [ $TRAVIS_BRANCH = code ] &&\n [ $TRAVIS_PULL_REQUEST = false ] &&\n zola build &&\n sudo pip install ghp-import &&\n ghp-import -n public -b master &&\n git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git master\n\nIf your site is using a custom domain, you will need to mention it in the ghp-import command:\nghp-import -c vaporsoft.net -n public for example.\nCredits: this page is based on the article https://vaporsoft.net/publishing-gutenberg-to-github/\n","id":"http://127.0.0.1:1111/deployment/github-pages/","title":"GitHub Pages"},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"body":"We are going to use the GitLab CI runner to automatically publish the site (this CI runner is already included in your repository if you use GitLab.com).\nRepository setup\nYour repository needs to be set up to be a user or group website. This means the name of the repository has to be in the correct format.\nFor example, assuming that the username is john, you have to create a project called john.gitlab.io. Your project URL will be https://gitlab.com/john/john.gitlab.io. Once you enable GitLab Pages for your project, your website will be published under https://john.gitlab.io.\nUnder your group websites, you created a project called websites.gitlab.io. Your project’s URL will be https://gitlab.com/websites/websites.gitlab.io. Once you enable GitLab Pages for your project, your website will be published under https://websites.gitlab.io.\nThis guide assumes that your Zola project is located in the root of your repository.\nEnsuring that the CI runner can access your theme\nDepending on how you added your theme, your repository may not contain it. The best way to ensure that the theme will\nbe added is to use submodules. When doing this, ensure that you are using the https version of the URL.\n$ git submodule add {THEME_URL} themes/{THEME_NAME}\n\nFor example, this could look like:\n$ git submodule add https://github.com/getzola/hyde.git themes/hyde\n\nSetting up the GitLab CI/CD Runner\nThe second step is to tell the GitLab continuous integration runner how to create the GitLab page.\nTo do this, create a file called .gitlab-ci.yml in the root directory of your repository.\nimage: alpine:latest\nvariables:\n # This variable will ensure that the CI runner pulls in your theme from the submodule\n GIT_SUBMODULE_STRATEGY: recursive \n # Specify the zola version you want to use here\n ZOLA_VERSION: \"v0.12.0\"\n\npages:\n script:\n # Install the zola package from the alpine community repositories\n - apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/community/ zola\n # Execute zola build\n - zola build\n \n artifacts:\n paths:\n # Path of our artifacts\n - public\n \n # This config will only publish changes that are pushed on the master branch\n only: \n - master\n\nPush this new file and ... Tada! You're done! If you navigate to settings > pages, you should be able to see\nsomething like this:\n\nCongratulations! Your pages are served under:\nhttps://john.gitlab.io\n\nMore information on the process to host on GitLab pages and additional information like using a custom domain is documented \nin this GitLab blog post.\n","id":"http://127.0.0.1:1111/deployment/gitlab-pages/","title":"GitLab Pages"},"http://127.0.0.1:1111/deployment/netlify/":{"body":"Netlify provides best practices like SSL, CDN distribution, caching and continuous deployment\nwith no effort. This site is hosted by Netlify and automatically deployed on commits.\nIf you don't have an account with Netlify, you can sign up for one.\nAutomatic deploys\nOnce you are in the admin interface, you can add a site from a Git provider (GitHub, GitLab or Bitbucket). At the end\nof this process, you can select the deploy settings for the project:\n\nbuild command: zola build (replace the version number in the variable by the version you want to use)\npublish directory: the path to where the public directory is\nimage selection: Ubuntu Xenial 16.04 (default)\nEnvironment variables: ZOLA_VERSION with for example 0.8.0 as value\n\nWith this setup, your site should be automatically deployed on every commit on master. For ZOLA_VERSION, you may\nuse any of the tagged release versions in the GitHub repository. Netlify will automatically fetch the tagged version\nand use it to build your site.\nHowever, if you want to use everything that Netlify gives you, you should also publish temporary sites for pull requests.\nThis is done by adding the following netlify.toml file in your repository and removing the build command/publish\ndirectory in the admin interface.\n[build]\n# This assumes that the Zola site is in a docs folder. If it isn't, you don't need\n# to have a `base` variable but you do need the `publish` and `command` variables.\nbase = \"docs\"\npublish = \"docs/public\"\ncommand = \"zola build\"\n\n[build.environment]\n# Set the version name that you want to use and Netlify will automatically use it.\nZOLA_VERSION = \"0.9.0\"\n\n# The magic for deploying previews of branches.\n# We need to override the base url with whatever url Netlify assigns to our\n# preview site. We do this using the Netlify environment variable\n# `$DEPLOY_PRIME_URL`.\n\n[context.deploy-preview]\ncommand = \"zola build --base-url $DEPLOY_PRIME_URL\"\n\nManual deploys\nIf you would prefer to use a version of Zola that isn't a tagged release (for example, after having built Zola from\nsource and made modifications), then you will need to manually deploy your public folder to Netlify. You can do\nthis through Netlify's web GUI or via the command line.\nFor a command-line manual deploy, follow these steps:\n\nGenerate a Personal Access Token from the settings section of your Netlify account (not an OAuth Application).\nBuild your site with zola build.\nCreate a zip folder containing the public directory.\nRun the curl command below, filling in your values for PERSONAL_ACCESS_TOKEN_FROM_STEP_1, FILE_NAME.zip\nand SITE_NAME.\n(Optional) delete the zip folder.\n\ncurl -H \"Content-Type: application/zip\" \\\n -H \"Authorization: Bearer PERSONAL_ACCESS_TOKEN_FROM_STEP_1\" \\\n --data-binary \"@FILE_NAME.zip\" \\\n https://api.netlify.com/api/v1/sites/SITE_NAME.netlify.com/deploys\n\n","id":"http://127.0.0.1:1111/deployment/netlify/","title":"Netlify"},"http://127.0.0.1:1111/deployment/overview/":{"body":"Zola outputs plain files, no databases needed. This makes hosting and deployment\ntrivial on many providers.\n","id":"http://127.0.0.1:1111/deployment/overview/","title":"Overview"},"http://127.0.0.1:1111/deployment/vercel/":{"body":"Vercel (previously zeit) is similar to Netlify, making deployment of sites easy.\nThe sites are hosted by Vercel and automatically deployed whenever we push a\ncommit to our selected production branch (e.g, master).\nIf you don't have an account with Vercel, you can sign up here.\nAutomatic deploys\nOnce you sign up you can import your site from a Git provider (Github, GitLab or Bitbucket). \nAfter the import, you can set the settings for your project. \n\nChoose Framework Preset as Other\nBuild command as zola build and make sure toggle on Override switch.\nBy default Vercel chooses output directory as public, if you use a different directory then specify output directory.\nTo add your own domain, go to domain setting in left and add it there.\n\nAll we have to is include a vercel.json in our project's root directory by\nspecifying the ZOLA_VERSION we want to use to deploy the site.\n {\n \"build\": {\n \"env\": {\n \"ZOLA_VERSION\": \"0.12.0\"\n }\n }\n}\n\nAnd your site should now be up and running.\n","id":"http://127.0.0.1:1111/deployment/vercel/","title":"Vercel"},"http://127.0.0.1:1111/getting-started/":{"body":"","id":"http://127.0.0.1:1111/getting-started/","title":"Getting Started"},"http://127.0.0.1:1111/getting-started/cli-usage/":{"body":"Zola only has 4 commands: init, build, serve and check.\nYou can view the help for the whole program by running zola --help and\nthat for a specific command by running zola <cmd> --help.\ninit\nCreates the directory structure used by Zola at the given directory after asking a few basic configuration questions.\nAny choices made during these prompts can be easily changed by modifying config.toml.\n$ zola init my_site\n$ zola init\n\nIf the my_site directory already exists, Zola will only populate it if it contains only hidden files (dotfiles are ignored). If no my_site argument is passed, Zola will try to populate the current directory.\nIn case you want to attempt to populate a non-empty directory and are brave, you can use zola init --force. Note that this will not overwrite existing folders or files; in those cases you will get a File exists (os error 17) error or similar.\nYou can initialize a git repository and a Zola site directly from within a new folder:\n$ git init\n$ zola init\n\nbuild\nThis will build the whole site in the public directory (if this directory already exists, it is overwritten).\n$ zola build\n\nYou can override the config base_url by passing a new URL to the base-url flag.\n$ zola build --base-url $DEPLOY_URL\n\nThis is useful for example when you want to deploy previews of a site to a dynamic URL, such as Netlify\ndeploy previews.\nYou can override the default output directory public by passing another value to the output-dir flag.\n$ zola build --output-dir $DOCUMENT_ROOT\n\nYou can point to a config file other than config.toml like so (note that the position of the config option is important):\n$ zola --config config.staging.toml build\n\nYou can also process a project from a different directory with the root flag. If building a project 'out-of-tree' with the root flag, you may want to combine it with the output-dir flag. (Note that like config, the position is important):\n$ zola --root /path/to/project build\n\nBy default, drafts are not loaded. If you wish to include them, pass the --drafts flag.\nserve\nThis will build and serve the site using a local server. You can also specify\nthe interface/port combination to use if you want something different than the default (127.0.0.1:1111).\nYou can also specify different addresses for the interface and base_url using --interface and -u/--base-url, respectively, if for example you are running Zola in a Docker container.\nUse the --open flag to automatically open the locally hosted instance in your\nweb browser.\nIn the event you don't want Zola to run a local web server, you can use the --watch-only flag.\nBefore starting, Zola will delete the public directory to start from a clean slate.\n$ zola serve\n$ zola serve --port 2000\n$ zola serve --interface 0.0.0.0\n$ zola serve --interface 0.0.0.0 --port 2000\n$ zola serve --interface 0.0.0.0 --base-url 127.0.0.1\n$ zola serve --interface 0.0.0.0 --port 2000 --output-dir www/public\n$ zola serve --watch-only\n$ zola serve --open\n\nThe serve command will watch all your content and provide live reload without\na hard refresh if possible.\nSome changes cannot be handled automatically and thus live reload may not always work. If you\nfail to see your change or get an error, try restarting zola serve.\nYou can also point to a config file other than config.toml like so (note that the position of the config option is important):\n$ zola --config config.staging.toml serve\n\nBy default, drafts are not loaded. If you wish to include them, pass the --drafts flag.\ncheck\nThe check subcommand will try to build all pages just like the build command would, but without writing any of the\nresults to disk. Additionally, it will also check all external links in Markdown files by trying to fetch\nthem (links in the template files are not checked).\nBy default, drafts are not loaded. If you wish to include them, pass the --drafts flag.\nColored output\nColored output is used if your terminal supports it.\nNote: coloring is automatically disabled when the output is redirected to a pipe or a file (i.e., when the standard output is not a TTY).\nYou can disable this behavior by exporting one of the following two environment variables:\n\nNO_COLOR (the value does not matter)\nCLICOLOR=0\n\nTo force the use of colors, you can set the following environment variable:\n\nCLICOLOR_FORCE=1\n\n","id":"http://127.0.0.1:1111/getting-started/cli-usage/","title":"CLI usage"},"http://127.0.0.1:1111/getting-started/configuration/":{"body":"The default configuration is sufficient to get Zola running locally but not more than that.\nIt follows the philosophy of paying for only what you need, almost everything is turned off by default.\nTo change the configuration, edit the config.toml file.\nIf you are not familiar with TOML, have a look at the TOML spec.\n⚠️ If you add keys to your config.toml, you must pay attention to which TOML section it belongs to.\nHere are the current config.toml sections:\n\nmain (unnamed)\nlink_checker\nslugify\nsearch\ntranslations\nextra\n\nOnly the base_url variable is mandatory. Everything else is optional. All configuration variables\nused by Zola as well as their default values are listed below:\n# The base URL of the site; the only required configuration variable.\nbase_url = \"mywebsite.com\"\n\n# The site title and description; used in feeds by default.\ntitle = \"\"\ndescription = \"\"\n\n# The default language; used in feeds.\ndefault_language = \"en\"\n\n# The site theme to use.\ntheme = \"\"\n\n# When set to \"true\", a feed is automatically generated.\ngenerate_feed = false\n\n# The filename to use for the feed. Used as the template filename, too.\n# Defaults to \"atom.xml\", which has a built-in template that renders an Atom 1.0 feed.\n# There is also a built-in template \"rss.xml\" that renders an RSS 2.0 feed.\n# feed_filename = \"atom.xml\"\n\n# The number of articles to include in the feed. All items are included if\n# this limit is not set (the default).\n# feed_limit = 20\n\n# When set to \"true\", files in the `static` directory are hard-linked. Useful for large\n# static files. Note that for this to work, both `static` and the\n# output directory need to be on the same filesystem. Note that the theme's `static`\n# files are always copied, regardless of this setting.\n# hard_link_static = false\n\n# The taxonomies to be rendered for the site and their configuration.\n# Example:\n# taxonomies = [\n# {name = \"tags\", feed = true}, # each tag will have its own feed\n# {name = \"tags\", lang = \"fr\"}, # you can have taxonomies with the same name in multiple languages\n# {name = \"categories\", paginate_by = 5}, # 5 items per page for a term\n# {name = \"authors\"}, # Basic definition: no feed or pagination\n# ]\n#\ntaxonomies = []\n\n# The additional languages for the site.\n# Example:\n# languages = [\n# {code = \"fr\", feed = true}, # there will be a feed for French content\n# {code = \"fr\", search = true}, # there will be a Search Index for French content\n# {code = \"it\"}, # there won't be a feed for Italian content\n# ]\n#\nlanguages = []\n\n# When set to \"true\", the Sass files in the `sass` directory in the site root are compiled.\n# Sass files in theme directories are always compiled.\ncompile_sass = false\n\n# When set to \"true\", the generated HTML files are minified.\nminify_html = false\n\n# A list of glob patterns specifying asset files to ignore when the content\n# directory is processed. Defaults to none, which means that all asset files are\n# copied over to the `public` directory.\n# Example:\n# ignored_content = [\"*.{graphml,xlsx}\", \"temp.*\"]\nignored_content = []\n\n# A list of directories used to search for additional `.sublime-syntax` files.\nextra_syntaxes = []\n\n# You can override the default output directory `public` by setting an another value.\n# output_dir = \"docs\"\n\n# Configuration of the Markdown rendering\n[markdown]\n# When set to \"true\", all code blocks are highlighted.\nhighlight_code = false\n\n# The theme to use for code highlighting.\n# See below for list of allowed values.\nhighlight_theme = \"base16-ocean-dark\"\n\n# When set to \"true\", emoji aliases translated to their corresponding\n# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)\nrender_emoji = false\n\n# Whether external links are to be opened in a new tab\n# If this is true, a `rel=\"noopener\"` will always automatically be added for security reasons\nexternal_links_target_blank = false\n\n# Whether to set rel=\"nofollow\" for all external links\nexternal_links_no_follow = false\n\n# Whether to set rel=\"noreferrer\" for all external links\nexternal_links_no_referrer = false\n\n# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form)\n# For example, `...` into `…`, `\"quote\"` into `“curly”` etc\nsmart_punctuation = false\n\n# Configuration of the link checker.\n[link_checker]\n# Skip link checking for external URLs that start with these prefixes\nskip_prefixes = [\n \"http://[2001:db8::]/\",\n]\n\n# Skip anchor checking for external URLs that start with these prefixes\nskip_anchor_prefixes = [\n \"https://caniuse.com/\",\n]\n\n# Various slugification strategies, see below for details\n# Defaults to everything being a slug\n[slugify]\npaths = \"on\"\ntaxonomies = \"on\"\nanchors = \"on\"\n\n# When set to \"true\", a search index is built from the pages and section\n# content for `default_language`.\nbuild_search_index = false\n\n[search]\n# Whether to include the title of the page/section in the index\ninclude_title = true\n# Whether to include the description of the page/section in the index\ninclude_description = false\n# Whether to include the rendered content of the page/section in the index\ninclude_content = true\n# At which character to truncate the content to. Useful if you have a lot of pages and the index would\n# become too big to load on the site. Defaults to not being set.\n# truncate_content_length = 100\n\n# Optional translation object. Keys should be language codes.\n# Optional translation object. The key if present should be a language code.\n# Example:\n# default_language = \"fr\"\n#\n# [translations]\n# [translations.fr]\n# title = \"Un titre\"\n#\n# [translations.en]\n# title = \"A title\"\n#\n[translations]\n\n# You can put any kind of data here. The data\n# will be accessible in all templates\n# Example:\n# [extra]\n# author = \"Famous author\"\n#\n# author value will be available using {{ config.extra.author }} in templates\n#\n[extra]\n\nSyntax highlighting\nZola currently has the following highlight themes available:\n\n1337\nagola-dark\nascetic-white\naxar\nayu-dark\nayu-light\nayu-mirage\nbase16-ocean-dark\nbase16-ocean-light\nbbedit\nboron\ncharcoal\ncheerfully-light\nclassic-modified\ndemain\ndimmed-fluid\ndracula\ngray-matter-dark\ngruvbox-dark\ngruvbox-light\nidle\ninspired-github\nir-white\nkronuz\nmaterial-dark\nmaterial-light\nmonokai\nnord\nnyx-bold\none-dark\nOneHalf\nsolarized-dark\nsolarized-light\nsubway-madrid\nsubway-moscow\nTomorrow\nTwoDark\nvisual-studio-dark\nzenburn\n\nZola uses the Sublime Text themes, making it very easy to add more.\nIf you want a theme not listed above, please open an issue or a pull request on the Zola repo.\nSlugification strategies\nBy default, Zola will turn every path, taxonomies and anchors to a slug, an ASCII representation with no special characters.\nYou can however change that strategy for each kind of item, if you want UTF-8 characters in your URLs for example. There are 3 strategies:\n\non: the default one, everything is turned into a slug\nsafe: characters that cannot exist in files on Windows (<>:\"/\\|?*) or Unix (/) are removed, everything else stays\noff: nothing is changed, your site might not build on some OS and/or break various URL parsers\n\nSince there are no filename issues with anchors, the safe and off strategies are identical in their case: the only change\nis space being replaced by _ since a space is not valid in an anchor.\nNote that if you are using a strategy other than the default, you will have to manually escape whitespace and Markdown\ntokens to be able to link to your pages. For example an internal link to a file named some space.md will need to be\nwritten like some%20space.md in your Markdown files.\n","id":"http://127.0.0.1:1111/getting-started/configuration/","title":"Configuration"},"http://127.0.0.1:1111/getting-started/directory-structure/":{"body":"After running zola init, you should see the following structure in your directory:\n.\n├── config.toml\n├── content\n├── sass\n├── static\n├── templates\n└── themes\n\n5 directories, 1 file\n\nHere's a high-level overview of each of these directories and config.toml.\nconfig.toml\nA mandatory Zola configuration file in TOML format.\nThis file is explained in detail in the configuration documentation.\ncontent\nContains all your markup content (mostly .md files).\nEach child directory of the content directory represents a section\nthat contains pages (your .md files).\nTo learn more, read the content overview page.\nsass\nContains the Sass files to be compiled. Non-Sass files will be ignored.\nThe directory structure of the sass folder will be preserved when copying over the compiled files; for example, a file at\nsass/something/site.scss will be compiled to public/something/site.css.\nstatic\nContains any kind of file. All the files/directories in the static directory will be copied as-is to the output directory.\nIf your static files are large, you can configure Zola to hard link them\ninstead of copying them by setting hard_link_static = true in the config file.\ntemplates\nContains all the Tera templates that will be used to render your site.\nHave a look at the templates documentation to learn more about default templates\nand available variables.\nthemes\nContains themes that can be used for your site. If you are not planning to use themes, leave this directory empty.\nIf you want to learn about themes, see the themes documentation.\n","id":"http://127.0.0.1:1111/getting-started/directory-structure/","title":"Directory structure"},"http://127.0.0.1:1111/getting-started/installation/":{"body":"Zola provides pre-built binaries for MacOS, Linux and Windows on the\nGitHub release page.\nmacOS\nZola is available on Brew:\n$ brew install zola\n\nArch Linux\nZola is available in the official Arch Linux repositories.\n$ pacman -S zola\n\nFedora\nZola has been available in the official repositories since Fedora 29.\n$ sudo dnf install zola\n\nVoid Linux\nZola is available in the official Void Linux repositories.\n$ sudo xbps-install zola\n\nFreeBSD\nZola is available in the official package repository.\n$ pkg install zola\n\nOpenBSD\nZola is available in the official package repository.\n$ doas pkg_add zola\n\nSnapcraft\nZola is available on snapcraft:\n$ snap install --edge zola\n\nWindows\nZola is available on Scoop:\n$ scoop install zola\n\nand Chocolatey:\n$ choco install zola\n\nZola does not work in PowerShell ISE.\nFrom source\nTo build Zola from source, you will need to have Git, Rust (at least 1.43) and Cargo\ninstalled. You will also need to meet additional dependencies to compile libsass:\n\nOSX, Linux and other Unix-like operating systems: make (gmake on BSDs), g++, libssl-dev\n\nNixOS: Create a shell.nix file in the root of the cloned project with the following contents:\n\n with import <nixpkgs> {};\n\n pkgs.mkShell {\n buildInputs = [\n libsass\n openssl\n pkgconfig\n ];\n }\n\n\nThen, invoke nix-shell. This opens a shell with the above dependencies. Then, run cargo build --release to build the project.\n\n\nWindows (a bit trickier): updated MSVC and overall updated VS installation\n\nFrom a terminal, you can now run the following command:\n$ cargo build --release\n\nThe binary will be available in the target/release directory. You can move it in your $PATH to have the\nzola command available globally or in a directory if you want for example to have the binary in the\nsame repository as the site.\n","id":"http://127.0.0.1:1111/getting-started/installation/","title":"Installation"},"http://127.0.0.1:1111/getting-started/overview/":{"body":"Zola at a Glance\nZola is a static site generator (SSG), similar to Hugo, Pelican, and Jekyll (for a comprehensive list of SSGs, please see the StaticGen site). It is written in Rust and uses the Tera template engine, which is similar to Jinja2, Django templates, Liquid, and Twig. Content is written in CommonMark, a strongly defined, highly compatible specification of Markdown.\nSSGs use dynamic templates to transform content into static HTML pages. Static sites are thus very fast and require no databases, making them easy to host. A comparison between static and dynamic sites, such as WordPress, Drupal, and Django, can be found here.\nTo get a taste of Zola, please see the quick overview below.\nFirst Steps with Zola\nUnlike some SSGs, Zola makes no assumptions regarding the structure of your site. In this overview, we'll be making a simple blog site.\nInitialize Site\n\nThis overview is based on Zola 0.9.\n\nPlease see the detailed installation instructions for your platform. With Zola installed, let's initialize our site:\n$ zola init myblog\n\nYou will be asked a few questions.\n> What is the URL of your site? (https://example.com):\n> Do you want to enable Sass compilation? [Y/n]:\n> Do you want to enable syntax highlighting? [y/N]:\n> Do you want to build a search index of the content? [y/N]:\n\nFor our blog, let's accept the default values (i.e., press Enter for each question). We now have a myblog directory with the following structure:\n├── config.toml\n├── content\n├── sass\n├── static\n├── templates\n└── themes\n\nLet's start the Zola development server with:\n$ zola serve\nBuilding site...\n-> Creating 0 pages (0 orphan), 0 sections, and processing 0 images\n\n\nThis command must be run in the base Zola directory, which contains config.toml.\n\nIf you point your web browser to http://127.0.0.1:1111, you should see a \"Welcome to Zola\" message.\nHome Page\nLet's make a home page. To do this, let's first create a base.html file inside the templates directory. This step will make more sense as we move through this overview. We'll be using the CSS framework Bulma.\n<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n <meta charset=\"utf-8\">\n <title>MyBlog</title>\n <link rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css\">\n</head>\n\n<body>\n <section class=\"section\">\n <div class=\"container\">\n {% block content %} {% endblock %}\n </div>\n </section>\n</body>\n\n</html>\n\nNow, let's create an index.html file inside the templates directory.\n{% extends \"base.html\" %}\n\n{% block content %}\n<h1 class=\"title\">\n This is my blog made with Zola.\n</h1>\n{% endblock content %}\n\nThis tells Zola that index.html extends our base.html file and replaces the block called \"content\" with the text between the {% block content %} and {% endblock content %} tags.\nContent Directory\nNow let's add some content. We'll start by making a blog subdirectory in the content directory and creating an _index.md file inside it. This file tells Zola that blog is a section, which is how content is categorized in Zola.\n├── content\n│ └── blog\n│ └── _index.md\n\nIn the _index.md file, we'll set the following variables in TOML format:\n+++\ntitle = \"List of blog posts\"\nsort_by = \"date\"\ntemplate = \"blog.html\"\npage_template = \"blog-page.html\"\n+++\n\n\nNote that although no variables are mandatory, the opening and closing +++ are required.\n\n\nsort_by = \"date\" tells Zola to use the date to order our section pages (more on pages below). \ntemplate = \"blog.html\" tells Zola to use blog.html in the templates directory as the template for listing the Markdown files in this section. \npage_template = \"blog-page.html\" tells Zola to use blog-page.html in the templates directory as the template for individual Markdown files. \n\nFor a full list of section variables, please see the section documentation. We will use title = \"List of blog posts\" in a template (see below).\nTemplates\nLet's now create some more templates. In the templates directory, create a blog.html file with the following contents:\n{% extends \"base.html\" %}\n\n{% block content %}\n<h1 class=\"title\">\n {{ section.title }}\n</h1>\n<ul>\n {% for page in section.pages %}\n <li><a href=\"{{ page.permalink | safe }}\">{{ page.title }}</a></li>\n {% endfor %}\n</ul>\n{% endblock content %}\n\nAs done by index.html, blog.html extends base.html, but this time we want to list the blog posts. The title we set in the _index.md file above is available to us as {{ section.title }}. In the list below the title, we loop through all the pages in our section (blog directory) and output the page title and URL using {{ page.title }} and {{ page.permalink | safe }}, respectively. We use the | safe filter because the permalink doesn't need to be HTML escaped (escaping would cause / to render as &#x2F;).\nIf you go to http://127.0.0.1:1111/blog/, you will see the section page for blog. The list is empty because we don't have any blog posts. Let's fix that now.\nMarkdown Content\nIn the blog directory, create a file called first.md with the following contents:\n+++\ntitle = \"My first post\"\ndate = 2019-11-27\n+++\n\nThis is my first blog post.\n\nThe title and date will be available to us in the blog-page.html template as {{ page.title }} and {{ page.date }}, respectively. All text below the closing +++ will be available to us as {{ page.content }}.\nWe now need to make the blog-page.html template. In the templates directory, create this file with the contents:\n{% extends \"base.html\" %}\n\n{% block content %}\n<h1 class=\"title\">\n {{ page.title }}\n</h1>\n<p class=\"subtitle\"><strong>{{ page.date }}</strong></p>\n{{ page.content | safe }}\n{% endblock content %}\n\n\nNote the | safe filter for {{ page.content }}.\n\nThis should start to look familiar. If you now go back to our blog list page at http://127.0.0.1:1111/blog/, you should see our lonely post. Let's add another. In the content/blog directory, let's create the file second.md with the contents:\n+++\ntitle = \"My second post\"\ndate = 2019-11-28\n+++\n\nThis is my second blog post.\n\nBack at http://127.0.0.1:1111/blog/, our second post shows up on top of the list because it's newer than the first post and we had set sort_by = \"date\" in our _index.md file. As a final step, let's modify our home page to link to our blog posts.\nThe index.html file inside the templates directory should be:\n{% extends \"base.html\" %}\n\n{% block content %}\n<h1 class=\"title\">\n This is my blog made with Zola.\n</h1>\n<p>Click <a href=\"/blog/\">here</a> to see my posts.</p>\n{% endblock content %}\n\nThis has been a quick overview of Zola. You can now dive into the rest of the documentation.\n","id":"http://127.0.0.1:1111/getting-started/overview/","title":"Overview"},"http://127.0.0.1:1111/templates/":{"body":"","id":"http://127.0.0.1:1111/templates/","title":"Templates"},"http://127.0.0.1:1111/templates/404/":{"body":"Zola will look for a 404.html file in the templates directory or\nuse the built-in one. The default template is very basic and gets config in its context.\n","id":"http://127.0.0.1:1111/templates/404/","title":"404 error page"},"http://127.0.0.1:1111/templates/archive/":{"body":"Zola doesn't have a built-in way to display an archive page (a page showing\nall post titles ordered by year). However, this can be accomplished directly in the templates:\n{% for year, posts in section.pages | group_by(attribute=\"year\") %}\n <h2>{{ year }}</h2>\n\n <ul>\n {% for post in posts %}\n <li><a href=\"{{ post.permalink }}\">{{ post.title }}</a></li>\n {% endfor %}\n </ul>\n{% endfor %}\n\nThis snippet assumes that posts are sorted by date and that you want to display the archive\nin descending order. If you want to show articles in ascending order, add a reverse filter\nafter group_by.\n","id":"http://127.0.0.1:1111/templates/archive/","title":"Archive"},"http://127.0.0.1:1111/templates/feeds/":{"body":"If the site config.toml file sets generate_feed = true, then Zola will\ngenerate a feed file for the site, named according to the feed_filename\nsetting in config.toml, which defaults to atom.xml. Given the feed filename\natom.xml, the generated file will live at base_url/atom.xml, based upon the\natom.xml file in the templates directory, or the built-in Atom template.\nfeed_filename can be set to any value, but built-in templates are provided\nfor atom.xml (in the preferred Atom 1.0 format), and rss.xml (in the RSS\n2.0 format). If you choose a different filename (e.g. feed.xml), you will\nneed to provide a template yourself.\nOnly pages with a date will be available.\nThe feed template gets five variables:\n\nconfig: the site config\nfeed_url: the full url to that specific feed\nlast_updated: the most recent updated or date field of any post\npages: see page variables\nfor a detailed description of what this contains\nlang: the language code that applies to all of the pages in the feed,\nif the site is multilingual, or config.default_language if it is not\n\nFeeds for taxonomy terms get two more variables, using types from the\ntaxonomies templates:\n\ntaxonomy: of type TaxonomyConfig\nterm: of type TaxonomyTerm, but without term.pages (use pages instead)\n\nYou can also enable separate feeds for each section by setting the\ngenerate_feed variable to true in the respective section's front matter.\nSection feeds will use the same template as indicated in the config.toml file.\nSection feeds, in addition to the five feed template variables, get the\nsection variable from the section template.\nEnable feed autodiscovery allows feed readers and browsers to notify user about a RSS or Atom feed available on your web site. So it is easier for user to subscribe.\nAs an example this is how it looks like using Firefox Livemarks addon.\n\nYou can enable posts autodiscovery modifying your blog base.html template adding the following code in between the <head> tags.\n{% block rss %}\n <link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"{{ get_url(path=\"rss.xml\", trailing_slash=false) }}\">\n{% endblock %}\n\nYou can as well use an Atom feed using type=\"application/atom+xml\" and path=\"atom.xml\".\nAll pages on your site will refer to your post feed.\nIn order to enable the tag feeds as well, you can overload the block rss using the following code in your tags/single.html template.\n{% block rss %}\n {% set rss_path = \"tags/\" ~ term.name ~ \"/rss.xml\" %}\n <link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"{{/* get_url(path=rss_path, trailing_slash=false) */}}\">\n{% endblock rss %}\n\nEach tag page will refer to it's dedicated feed.\n","id":"http://127.0.0.1:1111/templates/feeds/","title":"Feeds"},"http://127.0.0.1:1111/templates/overview/":{"body":"Zola uses the Tera template engine, which is very similar\nto Jinja2, Liquid and Twig.\nAs this documentation will only talk about how templates work in Zola, please read\nthe Tera template documentation if you want\nto learn more about it first.\nAll templates live in the templates directory. If you are not sure what variables are available in a template,\nyou can place {{ __tera_context }} in the template to print the whole context.\nA few variables are available on all templates except feeds and the sitemap:\n\nconfig: the configuration without any modifications\ncurrent_path: the path (full URL without base_url) of the current page, always starting with a /\ncurrent_url: the full URL for the current page\nlang: the language for the current page\n\nConfig variables can be accessed like config.variable, in HTML for example with {{ config.base_url }}.\nThe 404 template does not get current_path and current_url (this information cannot be determined).\nStandard templates\nBy default, Zola will look for three templates: index.html, which is applied\nto the site homepage; section.html, which is applied to all sections (any HTML\npage generated by creating a directory within your content directory); and\npage.html, which is applied to all pages (any HTML page generated by creating an\n.md file within your content directory).\nThe homepage is always a section (regardless of whether it contains other pages).\nThus, the index.html and section.html templates both have access to the\nsection variables. The page.html template has access to the page variables.\nThe page and section variables are described in more detail in the next section.\nBuilt-in templates\nZola comes with four built-in templates: atom.xml and rss.xml (described in\nFeeds), sitemap.xml (described in Sitemap),\nand robots.txt (described in Robots.txt).\nAdditionally, themes can add their own templates, which will be applied if not\noverridden. You can override built-in or theme templates by creating a template with\nthe same name in the correct path. For example, you can override the Atom template by\ncreating a templates/atom.xml file.\nCustom templates\nIn addition to the standard index.html, section.html and page.html templates,\nyou may also create custom templates by creating an .html file in the templates\ndirectory. These custom templates will not be used by default. Instead, a custom template will only be used if you apply it by setting the template front-matter variable to the path for that template (or if you include it in another template that is applied). For example, if you created a custom template for your site's About page called about.html, you could apply it to your about.md page by including the following front matter in your about.md page:\n+++\ntitle = \"About Us\"\ntemplate = \"about.html\"\n+++\n\nCustom templates are not required to live at the root of your templates directory.\nFor example, product_pages/with_pictures.html is a valid template.\nBuilt-in filters\nZola adds a few filters in addition to those already present\nin Tera.\nmarkdown\nConverts the given variable to HTML using Markdown. This doesn't apply any of the\nfeatures that Zola adds to Markdown; for example, internal links and shortcodes won't work.\nBy default, the filter will wrap all text in a paragraph. To disable this behaviour, you can\npass true to the inline argument:\n{{ some_text | markdown(inline=true) }}\n\nYou do not need to use this filter with page.content or section.content, the content is already rendered.\nbase64_encode\nEncode the variable to base64.\nbase64_decode\nDecode the variable from base64.\nBuilt-in global functions\nZola adds a few global functions to those in Tera\nto make it easier to develop complex sites.\nget_page\nTakes a path to an .md file and returns the associated page.\n{% set page = get_page(path=\"blog/page2.md\") %}\n\nget_section\nTakes a path to an _index.md file and returns the associated section.\n{% set section = get_section(path=\"blog/_index.md\") %}\n\nIf you only need the metadata of the section, you can pass metadata_only=true to the function:\n{% set section = get_section(path=\"blog/_index.md\", metadata_only=true) %}\n\nget_url\nGets the permalink for the given path.\nIf the path starts with @/, it will be treated as an internal\nlink like the ones used in Markdown, starting from the root content directory.\n{% set url = get_url(path=\"@/blog/_index.md\") %}\n\nIt accepts an optional parameter lang in order to compute a language-aware URL in multilingual websites. Assuming config.base_url is \"http://example.com\", the following snippet will:\n\nreturn \"http://example.com/blog/\" if config.default_language is \"en\"\nreturn \"http://example.com/en/blog/\" if config.default_language is not \"en\" and \"en\" appears in config.languages\nfail otherwise, with the error message \"'en' is not an authorized language (check config.languages).\"\n\n{% set url = get_url(path=\"@/blog/_index.md\", lang=\"en\") %}\n\nThis can also be used to get the permalinks for static assets, for example if\nwe want to link to the file that is located at static/css/app.css:\n{{ get_url(path=\"css/app.css\") }}\n\nBy default, assets will not have a trailing slash. You can force one by passing trailing_slash=true to the get_url function.\nAn example is:\n{{ get_url(path=\"css/app.css\", trailing_slash=true) }}\n\nIn the case of non-internal links, you can also add a cachebust of the format ?h=<sha256> at the end of a URL\nby passing cachebust=true to the get_url function.\nget_file_hash\nGets the hash digest for a static file. Supported hashes are SHA-256, SHA-384 (default) and SHA-512. Requires path. The sha_type key is optional and must be one of 256, 384 or 512.\n{{ get_file_hash(path=\"js/app.js\", sha_type=256) }}\n\nThis can be used to implement subresource integrity. Do note that subresource integrity is typically used when using external scripts, which get_file_hash does not support.\n<script src=\"{{ get_url(path=\"js/app.js\") }}\"\n integrity=\"sha384-{{ get_file_hash(path=\"js/app.js\", sha_type=384) }}\"></script>\n\nWhenever hashing files, whether using get_file_hash or get_url(..., cachebust=true), the file is searched for in three places: static/, content/ and the output path (so e.g. compiled SASS can be hashed, too.)\nget_image_metadata\nGets metadata for an image. This supports common formats like JPEG, PNG, as well as SVG.\nCurrently, the only supported keys are width and height.\n {% set meta = get_image_metadata(path=\"...\") %}\n Our image is {{ meta.width }}x{{ meta.height }}\n\nget_taxonomy_url\nGets the permalink for the taxonomy item found.\n{% set url = get_taxonomy_url(kind=\"categories\", name=page.taxonomies.category, lang=page.lang) %}\n\nname will almost always come from a variable but in case you want to do it manually,\nthe value should be the same as the one in the front matter, not the slugified version.\nlang (optional) default to config.default_language in config.toml\nget_taxonomy\nGets the whole taxonomy of a specific kind.\n{% set categories = get_taxonomy(kind=\"categories\") %}\n\nThe type of the output is:\nkind: TaxonomyConfig;\nitems: Array<TaxonomyTerm>;\n\nSee the Taxonomies documentation for a full documentation of those types.\nload_data\nLoads data from a file or URL. Supported file types include toml, json, csv and bibtex.\nAny other file type will be loaded as plain text.\nThe path argument specifies the path to the data file relative to your base directory, where your config.toml is.\nAs a security precaution, if this file is outside the main site directory, your site will fail to build.\n{% set data = load_data(path=\"content/blog/story/data.toml\") %}\n\nThe optional format argument allows you to specify and override which data type is contained\nwithin the file specified in the path argument. Valid entries are toml, json, csv, bibtex\nor plain. If the format argument isn't specified, then the path extension is used.\n{% set data = load_data(path=\"content/blog/story/data.txt\", format=\"json\") %}\n\nUse the plain format for when your file has a toml/json/csv extension but you want to load it as plain text.\nFor toml and json, the data is loaded into a structure matching the original data file;\nhowever, for csv there is no native notion of such a structure. Instead, the data is separated\ninto a data structure containing headers and records. See the example below to see\nhow this works.\nIn the template:\n{% set data = load_data(path=\"content/blog/story/data.csv\") %}\n\nIn the content/blog/story/data.csv file:\nNumber, Title\n1,Gutenberg\n2,Printing\n\nThe equivalent json value of the parsed data would be stored in the data variable in the\ntemplate:\n{\n \"headers\": [\"Number\", \"Title\"],\n \"records\": [\n [\"1\", \"Gutenberg\"],\n [\"2\", \"Printing\"]\n ],\n}\n\nThe bibtex format loads data into a structure matching the format used by the\nnom-bibtex crate. The following is an example of data\nin bibtex format:\n@preamble{\"A bibtex preamble\" # \" this is.\"}\n\n@Comment{\n Here is a comment.\n}\n\nAnother comment!\n\n@string(name = \"Vincent Prouillet\")\n@string(github = \"https://github.com/getzola/zola\")\n\n@misc {my_citation_key,\n author= name,\n title = \"Zola\",\n note = \"github: \" # github\n} }\n\nThe following is the json-equivalent format of the produced bibtex data structure:\n{\n \"preambles\": [\"A bibtex preamble this is.\"],\n \"comments\": [\"Here is a comment.\", \"Another comment!\"],\n \"variables\": {\n \"name\": \"Vincent Prouillet\",\n \"github\": \"https://github.com/getzola/zola\"\n },\n \"bibliographies\": [\n {\n \"entry_type\": \"misc\",\n \"citation_key\": \"my_citation_key\",\n \"tags\": {\n \"author\": \"Vincent Prouillet\",\n \"title\": \"Zola\",\n \"note\": \"github: https://github.com/getzola/zola\"\n }\n }\n ]\n}\n\nFinally, the bibtex data can be accessed from the template as follows:\n{% set tags = data.bibliographies[0].tags %}\nThis was generated using {{ tags.title }}, authored by {{ tags.author }}.\n\nRemote content\nInstead of using a file, you can load data from a remote URL. This can be done by specifying a url parameter\nto load_data rather than path.\n{% set response = load_data(url=\"https://api.github.com/repos/getzola/zola\") %}\n{{ response }}\n\nBy default, the response body will be returned with no parsing. This can be changed by using the format argument\nas below.\n{% set response = load_data(url=\"https://api.github.com/repos/getzola/zola\", format=\"json\") %}\n{{ response }}\n\nData caching\nData file loading and remote requests are cached in memory during the build, so multiple requests aren't made\nto the same endpoint.\nURLs are cached based on the URL, and data files are cached based on the file modified time.\nThe format is also taken into account when caching, so a request will be sent twice if it's loaded with two\ndifferent formats.\ntrans\nGets the translation of the given key, for the default_language or the language given\n{{ trans(key=\"title\") }}\n{{ trans(key=\"title\", lang=\"fr\") }}\n\nresize_image\nResizes an image file.\nPlease refer to Content / Image Processing for complete documentation.\n","id":"http://127.0.0.1:1111/templates/overview/","title":"Overview"},"http://127.0.0.1:1111/templates/pages-sections/":{"body":"Templates for pages and sections are very similar.\nPage variables\nZola will try to load the templates/page.html template, the page.html template of the theme if one is used\nor render the built-in template (a blank page).\nWhichever template you decide to render, you will get a page variable in your template\nwith the following fields:\n// The HTML output of the Markdown content\ncontent: String;\ntitle: String?;\ndescription: String?;\ndate: String?;\n// `updated` will be the same as `date` if `date` is specified but `updated` is not in front-matter\nupdated: String?;\nslug: String;\npath: String;\ndraft: Bool;\n// the path, split on '/'\ncomponents: Array<String>;\npermalink: String;\nsummary: String?;\ntaxonomies: HashMap<String, Array<String>>;\nextra: HashMap<String, Any>;\ntoc: Array<Header>,\n// Naive word count, will not work for languages without whitespace\nword_count: Number;\n// Based on https://help.medium.com/hc/en-us/articles/214991667-Read-time\nreading_time: Number;\n// `earlier` and `later` are only populated if the section variable `sort_by` is set to `date`\n// and only set when rendering the page itself\nearlier: Page?;\nlater: Page?;\n// `heavier` and `lighter` are only populated if the section variable `sort_by` is set to `weight`\n// and only set when rendering the page itself\nheavier: Page?;\nlighter: Page?;\n// Year/month/day is only set if the page has a date and month/day are 1-indexed\nyear: Number?;\nmonth: Number?;\nday: Number?;\n// Paths of colocated assets, relative to the content directory\nassets: Array<String>;\n// The relative paths of the parent sections until the index one, for use with the `get_section` Tera function\n// The first item is the index section and the last one is the parent section\n// This is filled after rendering a page content so it will be empty in shortcodes\nancestors: Array<String>;\n// The relative path from the `content` directory to the markdown file\nrelative_path: String;\n// The language for the page if there is one. Default to the config `default_language`\nlang: String;\n// Information about all the available languages for that content\ntranslations: Array<TranslatedContent>;\n\nSection variables\nBy default, Zola will try to load templates/index.html for content/_index.md\nand templates/section.html for other _index.md files. If there isn't\none, it will render the built-in template (a blank page).\nWhichever template you decide to render, you will get a section variable in your template\nwith the following fields:\n// The HTML output of the Markdown content\ncontent: String;\ntitle: String?;\ndescription: String?;\npath: String;\n// the path, split on '/'\ncomponents: Array<String>;\npermalink: String;\nextra: HashMap<String, Any>;\n// Pages directly in this section. By default, the pages are not sorted. Please set the \"sorted_by\"\n// variable in the _index.md file of the corresponding section to \"date\" or \"weight\" for sorting by\n// date and weight, respectively.\npages: Array<Page>;\n// Direct subsections to this section, sorted by subsections weight\n// This only contains the path to use in the `get_section` Tera function to get\n// the actual section object if you need it\nsubsections: Array<String>;\ntoc: Array<Header>,\n// Unicode word count\nword_count: Number;\n// Based on https://help.medium.com/hc/en-us/articles/214991667-Read-time\nreading_time: Number;\n// Paths of colocated assets, relative to the content directory\nassets: Array<String>;\n// The relative paths of the parent sections until the index one, for use with the `get_section` Tera function\n// The first item is the index section and the last one is the parent section\n// This is filled after rendering a page content so it will be empty in shortcodes\nancestors: Array<String>;\n// The relative path from the `content` directory to the markdown file\nrelative_path: String;\n// The language for the section if there is one. Default to the config `default_language`\nlang: String;\n// Information about all the available languages for that content\ntranslations: Array<TranslatedContent>;\n\nTable of contents\nBoth page and section templates have a toc variable that corresponds to an array of Header.\nA Header has the following fields:\n// The hX level\nlevel: 1 | 2 | 3 | 4 | 5 | 6;\n// The generated slug id\nid: String;\n// The text of the header\ntitle: String;\n// A link pointing directly to the header, using the inserted anchor\npermalink: String;\n// All lower level headers below this header\nchildren: Array<Header>;\n\nTranslated content\nBoth pages and sections have a translations field that corresponds to an array of TranslatedContent. If your\nsite is not using multiple languages, this will always be an empty array.\nTranslatedContent has the following fields:\n// The language code for that content, empty if it is the default language\nlang: String?;\n// The title of that content if there is one\ntitle: String?;\n// A permalink to that content\npermalink: String;\n// The path to the markdown file; useful for retrieving the full page through\n// the `get_page` function.\npath: String;\n\n","id":"http://127.0.0.1:1111/templates/pages-sections/","title":"Sections and Pages"},"http://127.0.0.1:1111/templates/pagination/":{"body":"Two things can get paginated: a section and a taxonomy term.\nBoth kinds get a paginator variable of the Pager type, on top of the common variables mentioned in the\noverview page:\n// How many items per pager\npaginate_by: Number;\n// The base URL for the pagination: section permalink + pagination path\n// You can concatenate an integer with that to get a link to a given pagination pager.\nbase_url: String;\n// How many pagers in total\nnumber_pagers: Number;\n// Permalink to the first pager\nfirst: String;\n// Permalink to the last pager\nlast: String;\n// Permalink to the previous pager, if there is one\nprevious: String?;\n// Permalink to the next pager, if there is one\nnext: String?;\n// All pages for the current pager\npages: Array<Page>;\n// Which pager are we on\ncurrent_index: Number;\n// Total number of pages accross all the pagers\ntotal_pages: Number;\n\nA pager is a page of the pagination; if you have 100 pages and paginate_by is set to 10, you will have 10 pagers each\ncontaining 10 pages.\nSection\nA paginated section gets the same section variable as a normal\nsection page\nminus its pages. The pages are instead in paginator.pages.\nTaxonomy term\nA paginated taxonomy gets two variables aside from the paginator variable:\n\na taxonomy variable of type TaxonomyConfig\na term variable of type TaxonomyTerm.\n\nSee the taxonomies page for a detailed version of the types.\n","id":"http://127.0.0.1:1111/templates/pagination/","title":"Pagination"},"http://127.0.0.1:1111/templates/robots/":{"body":"Zola will look for a robots.txt file in the templates directory or\nuse the built-in one.\nRobots.txt is the simplest of all templates: it only gets config\nand the default is what most sites want:\nUser-agent: *\nAllow: /\nSitemap: {{ get_url(path=\"sitemap.xml\") }}\n\n","id":"http://127.0.0.1:1111/templates/robots/","title":"Robots.txt"},"http://127.0.0.1:1111/templates/sitemap/":{"body":"Zola will look for a sitemap.xml file in the templates directory or\nuse the built-in one.\nIf your site has more than 30 000 pages, it will automatically split\nthe links into multiple sitemaps, as recommended by Google:\n\nAll formats limit a single sitemap to 50MB (uncompressed) and 50,000 URLs. \nIf you have a larger file or more URLs, you will have to break your list into multiple sitemaps. \nYou can optionally create a sitemap index file (a file that points to a list of sitemaps) and submit\nthat single index file to Google.\n\nIn such a case, Zola will use a template called split_sitemap_index.xml to render the index sitemap.\nThe sitemap.xml template gets a single variable:\n\nentries: all pages of the site, as a list of SitemapEntry\n\nA SitemapEntry has the following fields:\npermalink: String;\nupdated: String?;\nextra: Hashmap<String, Any>?;\n\nThe split_sitemap_index.xml also gets a single variable:\n\nsitemaps: a list of permalinks to the sitemaps\n\n","id":"http://127.0.0.1:1111/templates/sitemap/","title":"Sitemap"},"http://127.0.0.1:1111/templates/taxonomies/":{"body":"Zola will look up the following files in the templates directory:\n\n$TAXONOMY_NAME/single.html\n$TAXONOMY_NAME/list.html\n\nFirst, TaxonomyTerm has the following fields:\nname: String;\nslug: String;\npermalink: String;\npages: Array<Page>;\n\nand TaxonomyConfig has the following fields:\nname: String,\npaginate_by: Number?;\npaginate_path: String?;\nfeed: Bool;\nlang: String;\n\nTaxonomy list (list.html)\nThis template is never paginated and therefore gets the following variables in all cases.\n// The site config\nconfig: Config;\n// The data of the taxonomy, from the config\ntaxonomy: TaxonomyConfig;\n// The current full permalink for that page\ncurrent_url: String;\n// The current path for that page\ncurrent_path: String;\n// All terms for that taxonomy\nterms: Array<TaxonomyTerm>;\n// The lang of the current page\nlang: String;\n\nSingle term (single.html)\n// The site config\nconfig: Config;\n// The data of the taxonomy, from the config\ntaxonomy: TaxonomyConfig;\n// The current full permalink for that page\ncurrent_url: String;\n// The current path for that page\ncurrent_path: String;\n// The current term being rendered\nterm: TaxonomyTerm;\n// The lang of the current page\nlang: String;\n\nA paginated taxonomy term will also get a paginator variable; see the\npagination page for more details.\n","id":"http://127.0.0.1:1111/templates/taxonomies/","title":"Taxonomies"},"http://127.0.0.1:1111/themes/":{"body":"","id":"http://127.0.0.1:1111/themes/","title":"Themes"},"http://127.0.0.1:1111/themes/creating-a-theme/":{"body":"Creating a theme is exactly like creating a normal site with Zola, except you\nwill want to use many Tera blocks to\nallow users to easily modify it.\nGetting started\nAs mentioned, a theme is just like any site; start by running zola init MY_THEME_NAME.\nThe only thing needed to turn that site into a theme is to add a theme.toml configuration file with the\nfollowing fields:\nname = \"my theme name\"\ndescription = \"A classic blog theme\"\nlicense = \"MIT\"\nhomepage = \"https://github.com/getzola/hyde\"\n# The minimum version of Zola required\nmin_version = \"0.4.0\"\n# An optional live demo URL\ndemo = \"\"\n\n# Any variable there can be overriden in the end user `config.toml`\n# You don't need to prefix variables by the theme name but as this will\n# be merged with user data, some kind of prefix or nesting is preferable\n# Use snake_casing to be consistent with the rest of Zola\n[extra]\n\n# The theme author info: you!\n[author]\nname = \"Vincent Prouillet\"\nhomepage = \"https://vincent.is\"\n\n# If this is porting a theme from another static site engine, provide\n# the info of the original author here\n[original]\nauthor = \"mdo\"\nhomepage = \"http://markdotto.com/\"\nrepo = \"https://www.github.com/mdo/hyde\"\n\nA simple theme you can use as an example is Hyde.\nWorking on a theme\nAs a theme is just a site, you can simply use zola serve and make changes to your\ntheme, with live reload working as expected.\nMake sure to commit every directory (including content) in order for other people\nto be able to build the theme from your repository.\nSubmitting a theme to the gallery\nIf you want your theme to be featured in the themes section\nof this site, the theme will require two more things:\n\nscreenshot.png: a screenshot of the theme in action with a max size of around 2000x1000\nREADME.md: a thorough README explaining how to use the theme and any other information\nof importance\n\nThe first step is to make sure that the theme meets the following three requirements:\n\nhave a screenshot.png of the theme in action with a max size of around 2000x1000\nhave a thorough README.md explaining how to use the theme and any other information\nof importance\nbe of reasonably high quality\n\nWhen your theme is ready, you can submit it to the themes repository\nby following the process in the README.\n","id":"http://127.0.0.1:1111/themes/creating-a-theme/","title":"Creating a theme"},"http://127.0.0.1:1111/themes/extending-a-theme/":{"body":"When your site uses a theme, you can replace parts of it in your site's templates folder. For any given theme template, you can either override a single block in it, or replace the whole template. If a site template and a theme template collide, the site template will be given priority. Whether a theme template collides or not, theme templates remain accessible from any template within theme_name/templates/.\nReplacing a template\nWhen a site template and a theme template have the same path, for example templates/page.html and themes/theme_name/templates/page.html, the site template is the one that will be used. This is how you can replace a whole template for a theme.\nOverriding a block\nIf you don't want to replace a whole template, but override parts of it, you can extend the template and redefine some specific blocks. For example, if you want to override the title block in your theme's page.html, you can create a page.html file in your site templates with the following content:\n{% extends \"theme_name/templates/page.html\" %}\n{% block title %}{{ page.title }}{% endblock %}\n\nIf you extend page.html and not theme_name/templates/page.html specifically, it will extend the site's page template if it exists, and the theme's page template otherwise. This makes it possible to override your theme's base template(s) from your site templates, as long as the theme templates do not hardcode the theme name in template paths. For instance, children templates in the theme should use {% extends 'index.html' %}, not {% extends 'theme_name/templates/index.html' %}.\n","id":"http://127.0.0.1:1111/themes/extending-a-theme/","title":"Extending a theme"},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"body":"Installing a theme\nThe easiest way to install a theme is to clone its repository in the themes\ndirectory.\n$ cd themes\n$ git clone THEME_REPO_URL\n\nCloning the repository using Git or another VCS will allow you to easily\nupdate. Alternatively, you can download the files manually and place\nthem in a folder.\nYou can find a list of themes here.\nUsing a theme\nNow that you have the theme in your themes directory, you need to tell\nZola to use it by setting the theme variable in the\nconfiguration file. The theme\nname has to be the name of the directory you cloned the theme in.\nFor example, if you cloned a theme in themes/simple-blog, the theme name to use\nin the configuration file is simple-blog.\nCustomizing a theme\nAny file from the theme can be overridden by creating a file with the same path and name in your templates or static\ndirectory. Here are a few examples of that, assuming that the theme name is simple-blog:\ntemplates/pages/post.html -> replace themes/simple-blog/templates/pages/post.html\ntemplates/macros.html -> replace themes/simple-blog/templates/macros.html\nstatic/js/site.js -> replace themes/simple-blog/static/js/site.js\n\nYou can also choose to only override parts of a page if a theme defines some blocks by extending it. If we wanted\nto only change a single block from the post.html page in the example above, we could do the following:\n{% extends \"simple-blog/templates/pages/post.html\" %}\n\n{% block some_block %}\nSome custom data\n{% endblock %}\n\nMost themes will also provide some variables that are meant to be overridden. This happens in the extra section\nof the configuration file.\nLet's say a theme uses a show_twitter variable and sets it to false by default. If you want to set it to true,\nyou can update your config.toml like so:\n[extra]\nshow_twitter = true\n\nYou can modify files directly in the themes directory but this will make updating the theme harder and live reload\nwon't work with these files.\n","id":"http://127.0.0.1:1111/themes/installing-and-using-themes/","title":"Installing & using themes"},"http://127.0.0.1:1111/themes/overview/":{"body":"Zola has built-in support for themes that makes it easy to customise and update them.\nAll themes can use the full power of Zola, from shortcodes to Sass compilation.\nA list of themes is available here.\n","id":"http://127.0.0.1:1111/themes/overview/","title":"Overview"}},"docInfo":{"http://127.0.0.1:1111/":{"body":138,"title":2},"http://127.0.0.1:1111/content/":{"body":0,"title":1},"http://127.0.0.1:1111/content/linking/":{"body":212,"title":4},"http://127.0.0.1:1111/content/multilingual/":{"body":149,"title":2},"http://127.0.0.1:1111/content/overview/":{"body":437,"title":1},"http://127.0.0.1:1111/content/page/":{"body":613,"title":1},"http://127.0.0.1:1111/content/sass/":{"body":154,"title":1},"http://127.0.0.1:1111/content/search/":{"body":93,"title":1},"http://127.0.0.1:1111/content/section/":{"body":770,"title":1},"http://127.0.0.1:1111/content/shortcodes/":{"body":600,"title":1},"http://127.0.0.1:1111/content/syntax-highlighting/":{"body":826,"title":2},"http://127.0.0.1:1111/content/table-of-contents/":{"body":77,"title":2},"http://127.0.0.1:1111/content/taxonomies/":{"body":448,"title":1},"http://127.0.0.1:1111/deployment/":{"body":0,"title":1},"http://127.0.0.1:1111/deployment/github-pages/":{"body":547,"title":2},"http://127.0.0.1:1111/deployment/gitlab-pages/":{"body":218,"title":2},"http://127.0.0.1:1111/deployment/netlify/":{"body":253,"title":1},"http://127.0.0.1:1111/deployment/overview/":{"body":12,"title":1},"http://127.0.0.1:1111/deployment/vercel/":{"body":94,"title":1},"http://127.0.0.1:1111/getting-started/":{"body":0,"title":2},"http://127.0.0.1:1111/getting-started/cli-usage/":{"body":423,"title":2},"http://127.0.0.1:1111/getting-started/configuration/":{"body":686,"title":1},"http://127.0.0.1:1111/getting-started/directory-structure/":{"body":140,"title":2},"http://127.0.0.1:1111/getting-started/installation/":{"body":183,"title":1},"http://127.0.0.1:1111/getting-started/overview/":{"body":641,"title":1},"http://127.0.0.1:1111/templates/":{"body":0,"title":1},"http://127.0.0.1:1111/templates/404/":{"body":16,"title":3},"http://127.0.0.1:1111/templates/archive/":{"body":54,"title":1},"http://127.0.0.1:1111/templates/feeds/":{"body":247,"title":1},"http://127.0.0.1:1111/templates/overview/":{"body":917,"title":1},"http://127.0.0.1:1111/templates/pages-sections/":{"body":449,"title":2},"http://127.0.0.1:1111/templates/pagination/":{"body":134,"title":1},"http://127.0.0.1:1111/templates/robots/":{"body":22,"title":1},"http://127.0.0.1:1111/templates/sitemap/":{"body":89,"title":1},"http://127.0.0.1:1111/templates/taxonomies/":{"body":118,"title":1},"http://127.0.0.1:1111/themes/":{"body":0,"title":1},"http://127.0.0.1:1111/themes/creating-a-theme/":{"body":206,"title":2},"http://127.0.0.1:1111/themes/extending-a-theme/":{"body":128,"title":2},"http://127.0.0.1:1111/themes/installing-and-using-themes/":{"body":168,"title":3},"http://127.0.0.1:1111/themes/overview/":{"body":20,"title":1}},"length":40},"lang":"English"}; \ No newline at end of file diff --git a/docs/zola/public/templates/feeds/rss_feed.png b/docs/zola/public/templates/feeds/rss_feed.png deleted file mode 100644 index 81abb70..0000000 Binary files a/docs/zola/public/templates/feeds/rss_feed.png and /dev/null differ