From 83511528aefd7b5d24a80c587c6582346002212e Mon Sep 17 00:00:00 2001 From: yannickmorvan Date: Fri, 10 Nov 2023 10:58:55 +0100 Subject: [PATCH] PedaPersp Shorten last sentence --- apa7-fr-couture.csl | 1679 ++++++++++ docs/ComplexPsycho.html | 150 +- docs/ComplexSystems.html | 150 +- docs/LICENSE-CC-BY-4.0.html | 146 +- docs/about.html | 149 +- docs/index.html | 148 +- docs/peda.html | 150 +- docs/pedaPerspectives.html | 152 +- docs/publi.html | 150 +- docs/publiPerspectives.html | 150 +- docs/references.html | 146 +- docs/search.json | 274 +- .../bootstrap/bootstrap-dark.min.css | 4 +- docs/site_libs/bootstrap/bootstrap-icons.css | 51 +- docs/site_libs/bootstrap/bootstrap-icons.woff | Bin 164360 -> 164168 bytes docs/site_libs/bootstrap/bootstrap.min.css | 4 +- docs/site_libs/quarto-html/anchor.min.js | 6 +- docs/site_libs/quarto-html/popper.min.js | 4 +- docs/site_libs/quarto-nav/quarto-nav.js | 8 +- .../quarto-search/autocomplete.umd.js | 4 +- docs/site_libs/quarto-search/quarto-search.js | 23 +- pedaPerspectives.qmd | 2 +- references.bib | 2894 +++++++++++++++++ 23 files changed, 4918 insertions(+), 1526 deletions(-) create mode 100644 apa7-fr-couture.csl create mode 100644 references.bib diff --git a/apa7-fr-couture.csl b/apa7-fr-couture.csl new file mode 100644 index 0000000..d08fc19 --- /dev/null +++ b/apa7-fr-couture.csl @@ -0,0 +1,1679 @@ + + diff --git a/docs/ComplexPsycho.html b/docs/ComplexPsycho.html index 8b88a8d..e8a5b41 100644 --- a/docs/ComplexPsycho.html +++ b/docs/ComplexPsycho.html @@ -2,7 +2,7 @@ - + @@ -50,11 +50,6 @@ "panel-placement": "end", "type": "overlay", "limit": 20, - "keyboard-shortcut": [ - "f", - "/", - "s" - ], "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -64,8 +59,7 @@ "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", "search-detached-cancel-button-title": "Cancel", - "search-submit-button-title": "Submit", - "search-label": "Search" + "search-submit-button-title": "Submit" } } @@ -79,7 +73,7 @@
@@ -412,7 +406,7 @@

Mise en perspective -
+ @@ -79,7 +73,7 @@
@@ -371,7 +365,7 @@

+ @@ -79,7 +73,7 @@
@@ -369,33 +363,6 @@ } } } - const toggleGiscusIfUsed = (isAlternate, darkModeDefault) => { - const baseTheme = document.querySelector('#giscus-base-theme')?.value ?? 'light'; - const alternateTheme = document.querySelector('#giscus-alt-theme')?.value ?? 'dark'; - let newTheme = ''; - if(darkModeDefault) { - newTheme = isAlternate ? baseTheme : alternateTheme; - } else { - newTheme = isAlternate ? alternateTheme : baseTheme; - } - const changeGiscusTheme = () => { - // From: https://github.com/giscus/giscus/issues/336 - const sendMessage = (message) => { - const iframe = document.querySelector('iframe.giscus-frame'); - if (!iframe) return; - iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app'); - } - sendMessage({ - setConfig: { - theme: newTheme - } - }); - } - const isGiscussLoaded = window.document.querySelector('iframe.giscus-frame') !== null; - if (isGiscussLoaded) { - changeGiscusTheme(); - } - } const toggleColorMode = (alternate) => { // Switch the stylesheets const alternateStylesheets = window.document.querySelectorAll('link.quarto-color-scheme.quarto-color-alternate'); @@ -462,15 +429,13 @@ return localAlternateSentinel; } } - const darkModeDefault = false; - let localAlternateSentinel = darkModeDefault ? 'alternate' : 'default'; + let localAlternateSentinel = 'default'; // Dark / light mode switch window.quartoToggleColorScheme = () => { // Read the current dark / light value let toAlternate = !hasAlternateSentinel(); toggleColorMode(toAlternate); setStyleSentinel(toAlternate); - toggleGiscusIfUsed(toAlternate, darkModeDefault); }; // Ensure there is a toggle, if there isn't float one in the top right if (window.document.querySelector('.quarto-color-scheme-toggle') === null) { @@ -549,9 +514,10 @@ // clear code selection e.clearSelection(); }); - function tippyHover(el, contentFn, onTriggerFn, onUntriggerFn) { + function tippyHover(el, contentFn) { const config = { allowHTML: true, + content: contentFn, maxWidth: 500, delay: 100, arrow: false, @@ -561,17 +527,8 @@ interactive: true, interactiveBorder: 10, theme: 'quarto', - placement: 'bottom-start', + placement: 'bottom-start' }; - if (contentFn) { - config.content = contentFn; - } - if (onTriggerFn) { - config.onTrigger = onTriggerFn; - } - if (onUntriggerFn) { - config.onUntrigger = onUntriggerFn; - } window.tippy(el, config); } const noterefs = window.document.querySelectorAll('a[role="doc-noteref"]'); @@ -585,81 +542,6 @@ const note = window.document.getElementById(id); return note.innerHTML; }); - } - const xrefs = window.document.querySelectorAll('a.quarto-xref'); - const processXRef = (id, note) => { - // Strip column container classes - const stripColumnClz = (el) => { - el.classList.remove("page-full", "page-columns"); - if (el.children) { - for (const child of el.children) { - stripColumnClz(child); - } - } - } - stripColumnClz(note) - if (id.startsWith('sec-')) { - // Special case sections, only their first couple elements - const container = document.createElement("div"); - if (note.children && note.children.length > 2) { - for (let i = 0; i < 2; i++) { - container.appendChild(note.children[i].cloneNode(true)); - } - return container.innerHTML - } else { - return note.innerHTML; - } - } else { - // Remove any anchor links if they are present - const anchorLink = note.querySelector('a.anchorjs-link'); - if (anchorLink) { - anchorLink.remove(); - } - return note.innerHTML; - } - } - for (var i=0; i res.text()) - .then(html => { - const parser = new DOMParser(); - const htmlDoc = parser.parseFromString(html, "text/html"); - const note = htmlDoc.getElementById(id); - if (note !== null) { - const html = processXRef(id, note); - instance.setContent(html); - } - }).finally(() => { - instance.enable(); - instance.show(); - }); - } - } - }, function(instance) { - }); } let selectedAnnoteEl; const selectorForAnnotation = ( cell, annotation) => { @@ -702,7 +584,6 @@ } div.style.top = top - 2 + "px"; div.style.height = height + 4 + "px"; - div.style.left = 0; let gutterDiv = window.document.getElementById("code-annotation-line-highlight-gutter"); if (gutterDiv === null) { gutterDiv = window.document.createElement("div"); @@ -790,18 +671,14 @@