Se recomienda la versión extendida de Hugo (Hugo extended)
Dado que algunas funcionalidades de este tema necesitan convertir SCSS en CSS, se recomienda usar la versión Hugo extended para disponer de toda la funcionalidad.
2 Instalación
Sigue los siguientes pasos para iniciar tu nuevo sitio web. Si aún no sabes nada de Hugo, te sugerimos encarecidamente que aprendas más de
el siguiendo esta estupenda documentación para principiantes.
2.1 Crea tu proyecto
Hugo facilita el comando new para crear un nuevo sitio web:
baseURL="http://example.org/"# [en, zh-cn, fr, ...] determines default content languagedefaultContentLanguage="en"# language codelanguageCode="en"title="My New Hugo Site"# Change the default theme to be use when building the site with Hugotheme="FixIt"[params]# FixIt theme versionversion="0.2.X"[menu][[menu.main]]identifier="posts"# you can add extra information before the name (HTML format is supported), such as iconspre=""# you can add extra information after the name (HTML format is supported), such as iconspost=""name="Posts"url="/posts/"# title will be shown when you hover on this menu linktitle=""weight=1[[menu.main]]identifier="tags"pre=""post=""name="Tags"url="/tags/"title=""weight=2[[menu.main]]identifier="categories"pre=""post=""name="Categories"url="/categories/"title=""weight=3# Markup related configuration in Hugo[markup]# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)[markup.highlight]# false is a necessary configuration (https://github.com/Lruihao/FixIt/issues/43)noClasses=false
Nota
Cuando construyas un sitio web con Hugo, puedes establecer el tema con la opción --theme. Sin embargo, te sugerimos modificar el fichero de
configuración (config.toml) y establecer el tema por defecto.
El tema FixIt soporta submenues. Echa un ojo a la sección Menu Advanced Configuration.
2.4 Crea tu primera entrada
Esta es la forma de invocar Hugo para crear tu primera entrada:
1
hugo new posts/first_post.md
Edita la entrada (post) añadiendo algún contenido de ejemplo y reemplazando el valor del título al comienzo del fichero.
Nota
Por defecto todas las entradas y páginas se crean como borrador (draft). Si quieres que Hugo genere esas páginas hay tres opciones: eliminar la propiedad draft: true de los metadatos del documento, establecer la propiedad como draft: false o añadir la opción -D/--buildDrafts cuando invocamos a hugo.
2.5 Arrancando el sitio web localmente
Puedes arrancar el sito web localmente con el siguiente comando:
1
hugo server
Go to http://localhost:1313.
Consejo
Mientras ejecutas hugo serve, cuando los contenidos de los ficheros cambian las páginas web se refrescan automáticamente para reflejar los
cambios.
Nota
Puesto que el tema usa .Scratch en Hugo para implementar algunas funcionalidades es muy recomendable añadir la opción --disableFastRender al comando hugo server para generar la vista previa de las páginas localmente mientras editamos.
1
hugo serve --disableFastRender
2.6 Generar el sitio web
Cuando tengas todo listo para desplegar tu sitio web ejecuta el siguiente comando:
1
hugo
Se generará un directorio public con todo el contenido estático y los contenidos auxiliares necesarios para tu sitio web. Este contenido
puede desplegarse en cualquier servidor web.
Además de la Configuración Global de Hugo y la configuración de menu, el tema FixIt te permite definir los siguientes parámetros en la configuración de tu sitio web (aquí tienes un fichero config.toml, con los parámetros y sus valores por defecto).
Despliega el bloque de código a continuación para ver la configuración de ejemplo completa :
[params]# FixIt theme versionversion="0.2.X"# site descriptiondescription="This is My New Hugo Site"# site keywordskeywords=["Theme","Hugo"]# site default theme ("light", "dark", "auto")defaultTheme="auto"# public git repo url only then enableGitInfo is truegitRepo=""# which hash function used for SRI, when empty, no SRI is used# ("sha256", "sha384", "sha512", "md5")fingerprint=""# date formatdateFormat="2006-01-02"# website images for Open Graph and Twitter Cardsimages=["/logo.png"]# enable PWAenablePWA=true# whether to add external Icon for external links automaticallyexternalIcon=false# App icon config[params.app]# optional site title override for the app when added to an iOS home screen or Android launchertitle="FixIt"# whether to omit favicon resource linksnoFavicon=false# modern SVG favicon to use in place of older style .png and .ico filessvgFavicon=""# Safari mask icon coloriconColor="#5bbad5"# Windows v8-10 tile colortileColor="#da532c"# Android browser theme color[params.app.themeColor]light="#ffffff"dark="#252627"# Search config[params.search]enable=true# type of search engine ("lunr", "algolia")type="lunr"# max index length of the chunked contentcontentLength=4000# placeholder of the search barplaceholder=""# max number of results lengthmaxResultLength=10# snippet length of the resultsnippetLength=30# HTML tag name of the highlight part in resultshighlightTag="em"# whether to use the absolute URL based on the baseURL in search indexabsoluteURL=false[params.search.algolia]index=""appID=""searchKey=""# Header config[params.header]# desktop header mode ("sticky", "normal", "auto")desktopMode="sticky"# mobile header mode ("sticky", "normal", "auto")mobileMode="auto"# Header title config[params.header.title]# URL of the LOGOlogo=""# title namename=""# you can add extra information before the name (HTML format is supported), such as iconspre=""# you can add extra information after the name (HTML format is supported), such as iconspost=""# whether to use typeit animation for title nametypeit=false# Footer config[params.footer]enable=true# Custom content (HTML format is supported)custom=''# whether to show Hugo and theme infohugo=true# whether to show copyright infocopyright=true# whether to show the authorauthor=true# Site creation timesince=2019# ICP info only in China (HTML format is supported)icp=""# license info (HTML format is supported)license='<a rel="license external nofollow noopener noreffer" href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>'# Section (all posts) page config[params.section]# special amount of posts in each section pagepaginate=20# date format (month and day)dateFormat="01-02"# amount of RSS pagesrss=10# recently updated posts settings[params.section.recentlyUpdated]enable=falserss=falsedays=30maxCount=10# List (category or tag) page config[params.list]# special amount of posts in each list pagepaginate=20# date format (month and day)dateFormat="01-02"# amount of RSS pagesrss=10# Home page config[params.home]# amount of RSS pagesrss=10# Home page profile[params.home.profile]enable=true# Gravatar mirror site domain, default: "www.gravatar.com"gravatarSite=""# Gravatar Email for preferred avatar in home pagegravatarEmail=""# URL of avatar shown in home pageavatarURL="/images/avatar.png"# title shown in home page (HTML format is supported)title=""# subtitle shown in home pagesubtitle="This is My New Hugo Site"# whether to use typeit animation for subtitletypeit=true# whether to show social linkssocial=true# disclaimer (HTML format is supported)disclaimer=""# Home page posts[params.home.posts]enable=true# special amount of posts in each home posts pagepaginate=6# Social config about the author[params.social]GitHub="xxxx"Linkedin=""Twitter="xxxx"Instagram="xxxx"Facebook="xxxx"Telegram="xxxx"Medium=""Gitlab=""Youtubelegacy=""Youtubecustom=""Youtubechannel=""Tumblr=""Quora=""Keybase=""Pinterest=""Reddit=""Codepen=""FreeCodeCamp=""Bitbucket=""Stackoverflow=""Weibo=""Odnoklassniki=""VK=""Flickr=""Xing=""Snapchat=""Soundcloud=""Spotify=""Bandcamp=""Paypal=""Fivehundredpx=""Mix=""Goodreads=""Lastfm=""Foursquare=""Hackernews=""Kickstarter=""Patreon=""Steam=""Twitch=""Strava=""Skype=""Whatsapp=""Zhihu=""Douban=""Angellist=""Slidershare=""Jsfiddle=""Deviantart=""Behance=""Dribbble=""Wordpress=""Vine=""Googlescholar=""Researchgate=""Mastodon=""Thingiverse=""Devto=""Gitea=""XMPP=""Matrix=""Bilibili=""# ORCID, ... , CSDN ORCID=""Liberapay=""Ko-Fi=""BuyMeaCoffee=""Linktree=""QQ=""QQGroup=""Diaspora=""CSDN=""Email="xxxx@xxxx.com"RSS=true# # Page config[params.page]# whether to hide a page from home pagehiddenFromHomePage=false# whether to hide a page from search resultshiddenFromSearch=false# whether to enable twemojitwemoji=false# whether to enable lightgallerylightgallery=false# whether to enable the ruby extended syntaxruby=true# whether to enable the fraction extended syntaxfraction=true# whether to enable the fontawesome extended syntaxfontawesome=true# license info (HTML format is supported)license='<a rel="license external nofollow noopener noreffer" href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>'# whether to show link to Raw Markdown content of the contentlinkToMarkdown=true# whether to show the full text content in RSSrssFullText=false# Page style ("narrow", "normal", "wide", ...)pageStyle="normal"# Table of the contents config[params.page.toc]# whether to enable the table of the contentsenable=true# whether to keep the static table of the contents in front of the postkeepStatic=false# whether to make the table of the contents in the sidebar automatically collapsedauto=true# position of TOC ("left", "right")position="right"# Display a message at the beginning of an article to warn the reader that its content might be expired[params.page.expirationReminder]enable=false# Display the reminder if the last modified time is more than 90 days agoreminder=90# Display warning if the last modified time is more than 180 days agowarning=180# If the article expires, close the comment or notcloseComment=false# KaTeX mathematical formulas (https://katex.org)[params.page.math]enable=true# default block delimiter is $$ ... $$ and \\[ ... \\]blockLeftDelimiter=""blockRightDelimiter=""# default inline delimiter is $ ... $ and \\( ... \\)inlineLeftDelimiter=""inlineRightDelimiter=""# KaTeX extension copy_texcopyTex=true# KaTeX extension mhchemmhchem=true# Code config[params.page.code]# whether to show the copy button of the code blockcopy=true# whether to show the edit button of the code blockedit=true# the maximum number of lines of displayed code by defaultmaxShownLines=10# Post edit[params.page.edit]enable=false# url = "https://github.com/user-name/repo-name/edit/branch-name/subdirectory-name" # Link for fork & editurl="https://github.com/Lruihao/FixIt/edit/master/exampleSite/content"# Link for fork & edit# Mapbox GL JS config (https://docs.mapbox.com/mapbox-gl-js)[params.page.mapbox]# access token of Mapbox GL JSaccessToken=""# style for the light themelightStyle="mapbox://styles/mapbox/light-v9"# style for the dark themedarkStyle="mapbox://styles/mapbox/dark-v9"# whether to add NavigationControlnavigation=true# whether to add GeolocateControlgeolocate=true# whether to add ScaleControlscale=true# whether to add FullscreenControlfullscreen=true# social share links in post page[params.page.share]enable=trueTwitter=trueFacebook=trueLinkedin=falseWhatsapp=truePinterest=falseTumblr=falseHackerNews=falseReddit=falseVK=falseBuffer=falseXing=falseLine=trueInstapaper=falsePocket=falseDigg=falseStumbleupon=falseFlipboard=falseWeibo=trueRenren=falseMyspace=trueBlogger=trueBaidu=falseOdnoklassniki=falseEvernote=trueSkype=falseTrello=falseMix=false# Comment config[params.page.comment]enable=false# Artalk comment config (https://artalk.js.org/)[params.page.comment.artalk]enable=falseserver="https://yourdomain/api/"site="默认站点"placeholder=""noComment=""sendBtn=""editorTravel=trueflatMode='auto'maxNesting=3# It take effect when `params.page.lightgallery` is enabledlightgallery=false# Disqus comment config (https://disqus.com)[params.page.comment.disqus]# enable=false# Disqus shortname to use Disqus in postsshortname=""# Gitalk comment config (https://github.com/gitalk/gitalk)[params.page.comment.gitalk]# enable=falseowner=""repo=""clientId=""clientSecret=""# Valine comment config (https://github.com/xCss/Valine)[params.page.comment.valine]enable=falseappId=""appKey=""placeholder=""avatar="mp"meta=""pageSize=10lang=""visitor=truerecordIP=truehighlight=trueenableQQ=falseserverURLs=""# emoji data file name, default is "google.yml"# ("apple.yml", "google.yml", "facebook.yml", "twitter.yml")# located in "themes/FixIt/assets/data/emoji/" directory# you can store your own data files in the same path under your project:# "assets/data/emoji/"emoji=""commentCount=true# # Waline comment config (https://waline.js.org)[params.page.comment.waline]enable=falseserverURL=""visitor=falseemoji=['https://cdn.jsdelivr.net/gh/walinejs/emojis/weibo']meta=['nick','mail','link']requiredMeta=[]login='enable'wordLimit=0pageSize=10uploadImage=falsehighlight=truemathTagSupport=falsecommentCount=false# Facebook comment config (https://developers.facebook.com/docs/plugins/comments)[params.page.comment.facebook]enable=falsewidth="100%"numPosts=10appId=""languageCode=""# Telegram comments config (https://comments.app)[params.page.comment.telegram]enable=falsesiteID=""limit=5height=""color=""colorful=truedislikes=falseoutlined=false# Commento comment config (https://commento.io)[params.page.comment.commento]enable=false# Utterances comment config (https://utteranc.es)[params.page.comment.utterances]enable=false# owner/reporepo=""issueTerm="pathname"label=""lightTheme="github-light"darkTheme="github-dark"# Twikoo comment config (https://twikoo.js.org/)[params.page.comment.twikoo]enable=falseenvId=""region=""path=""visitor=truecommentCount=true# It take effect when `params.page.lightgallery` is enabledlightgallery=false# Third-party library config[params.page.library][params.page.library.css]# someCSS = "some.css"# located in "assets/"# Or# someCSS = "https://cdn.example.com/some.css"[params.page.library.js]# someJavascript = "some.js"# located in "assets/"# Or# someJavascript = "https://cdn.example.com/some.js"# Page SEO config[params.page.seo]# image URLimages=[]# Publisher info[params.page.seo.publisher]name=""logoUrl=""# TypeIt config[params.typeit]# typing speed between each step (measured in milliseconds)speed=100# blinking speed of the cursor (measured in milliseconds)cursorSpeed=1000# character used for the cursor (HTML format is supported)cursorChar="|"# cursor duration after typing finishing (measured in milliseconds, "-1" means unlimited)duration=-1# Watermark config# Detail config see https://github.com/Lruihao/watermark#readme[params.watermark]enable=false# watermark's text (HTML format is supported)content=''# watermark's transparencyopacity=0.1# parent of watermark's containerappendTo='.wrapper>main'# watermark's width. unit: pxwidth=150# watermark's height. unit: pxheight=20# row spacing of watermarks. unit: pxrowSpacing=60# col spacing of watermarks. unit: pxcolSpacing=30# watermark's tangent angle. unit: degrotate=15# watermark's fontSize. unit: remfontSize=0.85# watermark's fontFamilyfontFamily='inherit'# Busuanzi count[params.ibruce]enable=true# Enable in post metaenablePost=false# Site creation time e.g. '2019-02-03T19:30:34+08:00'siteTime=''# Site verification code config for Google/Bing/Yandex/Pinterest/Baidu/360/Sogou[params.verification]google=""bing=""yandex=""pinterest=""baidu=""so=""sogou=""# Site SEO config[params.seo]# image URLimage=""# thumbnail URLthumbnailUrl=""# Analytics config[params.analytics]enable=false# Google Analytics[params.analytics.google]id=""# whether to anonymize IPanonymizeIP=true# Fathom Analytics[params.analytics.fathom]id=""# server url for your tracker if you're self hostingserver=""# Cookie consent config[params.cookieconsent]enable=true# text strings used for Cookie consent banner[params.cookieconsent.content]message=""dismiss=""link=""# CDN config for third-party library files[params.cdn]# CDN data file name, disabled by default# ("jsdelivr.yml")# located in "themes/FixIt/assets/data/cdn/" directory# you can store your own data files in the same path under your project:# "assets/data/cdn/"data=""# Compatibility config[params.compatibility]# whether to use Polyfill.io to be compatible with older browserspolyfill=false# whether to use object-fit-images to be compatible with older browsersobjectFit=false# Custom JS at last# "_custom.js" located in "themes/FixIt/assets/js/"# you can store your custom JS file in the same path under your project:# "assets/js/_custom.js"[params.customJS]enable=true# GitHub banner in the top-right corner[params.githubCorner]enable=falsepermalink="https://github.com/Lruihao/FixIt"title="View source on GitHub"# Markup related configuration in Hugo[markup]# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)[markup.highlight]########## necessary configurations ########### https://github.com/Lruihao/FixIt/issues/43codeFences=truelineNos=truelineNumbersInTable=truenoClasses=false########## necessary configurations ##########guessSyntax=true# Goldmark is from Hugo 0.60 the default library used for Markdown[markup.goldmark][markup.goldmark.extensions]definitionList=truefootnote=truelinkify=truestrikethrough=truetable=truetaskList=truetypographer=true[markup.goldmark.renderer]# whether to use HTML tags directly in the documentunsafe=true# Table Of Contents settings[markup.tableOfContents]startLevel=2endLevel=6# Author config[author]name="xxxx"email=""link=""# Sitemap config[sitemap]changefreq="weekly"filename="sitemap.xml"priority=0.5# Permalinks config (https://gohugo.io/content-management/urls#permalinks)[Permalinks]# posts = ":year/:month/:filename"posts=":filename"# Privacy config (https://gohugo.io/about/hugo-and-gdpr/)[privacy][privacy.twitter]enableDNT=true[privacy.youtube]privacyEnhanced=true# Options to make output .md files[mediaTypes][mediaTypes."text/plain"]suffixes=["md"]# Options to make output .md files[outputFormats.MarkDown]mediaType="text/plain"isPlainText=trueisHTML=false# Options to make hugo output files[outputs]# home=["HTML","RSS","JSON"]page=["HTML","MarkDown"]section=["HTML","RSS"]taxonomy=["HTML","RSS"]taxonomyTerm=["HTML"]
Nota
Algunos de estos parámetros se explican con mas detalle en otras secciones de esta docuementación.
Hugo environments
Los entornos (enviroments) por defecto son development, que se usa con hugo server y production que se usa con hugo.
Debido a limitaciones del entorno local development, el comment system (sistema de comentarios), y el CDN junto con el
fingerprint no estarán habilitados en este entorno development.
Siempre puede habilitar estas funcionalidad añadiendo la opción hugo serve -e production al invocar a Hugo.
Ayuda para la configuración de CDN
1
2
3
4
[params.cdn]# CDN data file name, disabled by default# ("jsdelivr.yml")data=""
El fichero de datos por defecto para CDN se localiza en el directorio themes/FixIt/assets/data/cdn/.
Puedes guardar tu propio fichero en el mismo path de tu proyecto: assets/data/cdn/.
Ayudas para la configuración de datos sociales
Puedes establecer tu ID directamente para tener un enlace a la red social y su icono:
1
2
[params.social]Mastodon="@xxxx"
El enlace a la red social generado será https://mastodon.technology/@xxxx.
También puedes pasar más opciones como un dict:
1
2
3
4
5
6
7
8
9
10
[params.social][params.social.Mastodon]# weight when arranging icons (the greater the weight, the later the icon is positioned)weight=0# your social IDid="@xxxx"# prefix of your social linkprefix="https://mastodon.social/"# content hovering on the icontitle="Mastodon"
Los datos por defecto para todas las redes sociales soportadas están localizados en themes/FixIt/assets/data/social.yaml, puedes consultarlo como referencia.
3.2 Favicons, Browserconfig, Manifest
Es recomendable que configures tus propios favicons:
There are three css common class for print view in FixIt Theme.
page-break-before Insert page break before element
page-break-after Insert page break after element
print-d-none Hide elements in print view
Here is a simple exmple:
1
2
3
4
5
<divclass="page-break-before"></div><divclass="page-break-after"></div><divclass="print-d-none"> Something you want to hide in the print view is written here.
</div>
According to the interface provided by Hugo, FixIt theme only realizes some functions, but I think it is enough to meet the needs of most people and make users easier to use.
The following is a complete menu item configuration:
[menu][[menu.main]]identifier="posts"# Identifier of the parent menu itemparent=""# you can add extra information before the name (HTML format is supported), such as iconspre=""# you can add extra information after the name (HTML format is supported), such as iconspost=""name="Posts"url="/posts/"# title will be shown when you hover on this menu linktitle=""weight=1# add user-defined content to menu items[menu.main.params]# add css class to a specific menu itemclass='text-center'# whether set as a draft menu item whose function is similar to a draft post/pagedraft=false
3.4.1 Sub Menu
In consideration of practicability and typesetting, the FixIt theme only supports two-tier nested menus, which can be configured through the parent field in the menu configuration.
The parent item of a menu item should be the identifier of another menu item, and the identifier should be unique in the menu.
3.4.2 Menu Params
You can also add user-defined content to menu items via the params field. The FixIt theme currently provides two parameters:
class{String} add css class to a specific menu item
draft{Boolean} whether set as a draft menu item whose function is similar to a draft post/page
Nota
The draft menu items and posts/pages can be rendered by starting the Hugo server command or adding the -D/--buildDrafts parameter to hugo command.
Consejo
This helps to distinguish the different contents of preview environment and production environment during deployment.
It’s also possible to create menu entries from the page by configuring front matter (i.e. the .md-file).
Here is a yaml example:
1
2
3
4
5
6
7
8
9
10
11
---title:"Theme Documentation - Basics"author:"Lruihao"menu:main:name:"Basics"title:"Discover what the Hugo - FixIt theme is all about and the core-concepts behind it."parent:"documentation"pre:"<i class='fab fa-readme fa-fw fa-sm'></i>"---...
4 Soporte Multilingüe e i18n
El tema LoveIt es totalmente compatible con el modo Multilingüe de Hugo, que implementa la elección de idioma en el navegador.
# [en, zh-cn, fr, pl, ...] determines default content languagedefaultContentLanguage="en"[languages][languages.en]weight=1title="My New Hugo Site"languageCode="en"languageName="English"[[languages.en.menu.main]]identifier="posts"pre=""post=""name="Posts"url="/posts/"title=""weight=1[[languages.en.menu.main]]identifier="tags"pre=""post=""name="Tags"url="/tags/"title=""weight=2[[languages.en.menu.main]]identifier="categories"pre=""post=""name="Categories"url="/categories/"title=""weight=3[languages.zh-cn]weight=2title="我的全新 Hugo 网站"# language code, CN only herelanguageCode="zh-CN"languageName="简体中文"# whether to include Chinese/Japanese/KoreanhasCJKLanguage=true[[languages.zh-cn.menu.main]]identifier="posts"pre=""post=""name="文章"url="/posts/"title=""weight=1[[languages.zh-cn.menu.main]]identifier="tags"pre=""post=""name="标签"url="/tags/"title=""weight=2[[languages.zh-cn.menu.main]]identifier="categories"pre=""post=""name="分类"url="/categories/"title=""weight=3[languages.fr]weight=3title="Mon nouveau site Hugo"languageCode="fr"languageName="Français"[[languages.fr.menu.main]]identifier="posts"pre=""post=""name="Postes"url="/posts/"title=""weight=1[[languages.fr.menu.main]]identifier="tags"pre=""post=""name="Balises"url="/tags/"title=""weight=2[[languages.fr.menu.main]]identifier="categories"name="Catégories"pre=""post=""url="/categories/"title=""weight=3
Una vez configurados los idiomas, para cada nueva página, añade el código de idioma al nombre del fichero.
Por ejemplo la página my-page.md se tendría que implementar en tres ficheros:
en Inglés: my-page.en.md
en Chino: my-page.zh-cn.md
en Francés: my-page.fr.md
Nota
Ten en cuenta que sólo las páginas traducidas se muestran en los menús. No hay ningún mecanismo para reemplazarlas con un idioma por defecto.
Las cadenas de traducción (Translations strings) implementan la
traducción de los mensajes frecuentes o mensajes por defecto usados en
el tema. Las traducciones están disponibles para algunos
idiomas, pero puedes usar otro idioma o
sobre-escribir los valores por defecto de un idioma.
Para sobre-escribir esos valores, crea un nuevo fichero en tu
directorio local i18n i18n/<languageCode>.toml puedes basarte en el
fichero themes/LoveIt/i18n/en.toml para crear tu versión en un nuevo
idioma.
Por cierto, como estas traducciones podrían ser usadas por otra gente,
por favor considera invertir parte de tu tiempo en proponer una
traducción haciendo un Pull
Request en el repo del
tema.
5 Búsqueda
La busqueda está soportada en el tema FixIt, puede estar basada en Lunr.js o en algolia.
5.1 Configuración de la salida
Para poder generar el fichero index.json necesario para la busqueda, hay que añadir JSON a los tipos de fichero de salida para el home en la sección de outputs en tu fichero de configuración del sitio.
1
2
[outputs]home=["HTML","RSS","JSON"]
5.2 Configuración de la búsqueda
Puedes activar la opción de búsqueda basada en el fichero index.json generado por Hugo.
Aquí puedes ver la configuración de la búsqueda en el fichero site configuration:
[params.search]enable=true# type of search engine ("lunr", "algolia")type="lunr"# max index length of the chunked contentcontentLength=4000# placeholder of the search barplaceholder=""# max number of results lengthmaxResultLength=10# snippet length of the resultsnippetLength=30# HTML tag name of the highlight part in resultshighlightTag="em"# whether to use the absolute URL based on the baseURL in search indexabsoluteURL=false[params.search.algolia]index=""appID=""searchKey=""
¿Qué motor de búsqueda escoger?
A continuación tienes una comparativa entre los dos motores de búsqueda:
lunr: simple, no hay necesidad de sincronizar el fichero
index.json, no hay limites para el contentLength, pero
necesitarás un ancho de banda mayor y tendrás un rendimiento menor
(Especialmente para el Chino que necesita una gran biblioteca de
segmentos)
algolia: Alto rendimiento y bajo ancho de banda, pero necesitaras
sincronizar el fichero index.json y limitar el contentLength
El contenido de una entrada se separa con
cabeceras HTML h2 yh3 para mejorar el rendimiento de las consultas
y emplementar una búsqueda de texto completo.
Se usa contentLength para limitar la longitud máxima del indexado de
las partes que comienzan con etiquetas HTML h2 y h3.
Ayudas para algolia
Es necesario añadir los ficheros index.json a algolia para activar la búsqueda.
Podrías subir los ficheros index.json mediante el navegador pero es
más conveniente usar alguna herramienta CLI. Una buena elección podría
ser Algolia Atomic
Para mantener la compatibilidad con el modo multi-idioma de Hugo, es
necesario subir a algolia diferentes ficheros index.json para cada
uno de los idiomas, por ejemplo: zh-cn/index.json or
fr/index.json…
Gracias
Gracias al autor original Dillon por preparar y revisar todo el contenido previo a la versión v0.2.10 de este documento.