aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en/articles/solid-state
Commit message (Collapse)AuthorAgeFilesLines
* Regenerate translation filesEd Maste2024-12-291-19/+22
| | | | | | | | Via `sh tools/update_translate_template.sh documentation` Reviewed by: dbaio Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D48234
* Fix links that use crossref without descriptionFernando ApesteguĂ­a2024-09-221-4/+4
| | | | | | | | | | | | | Summary: Add the anchor text to the crossref macro Test Plan: Apply patch and build the documentation A follow-up change will make the crossref macro fail if no description is used. Subscribers: delphij Differential Revision: https://reviews.freebsd.org/D46721
* doc: Update source files (en .po), for translationsDanilo G. Baio2024-09-141-73/+74
|
* [documentation]: Fix links in all output formatsFernando ApesteguĂ­a2024-09-071-4/+7
| | | | | | | | | | | | | Use the crossref: macro for intra-file and intra-book links. This will produce the correct link in Single HTML, Splitted HTML and PDF. Rework the macro to include the PDF special render. While here, briefly document macros. PR: 266107 Reviewed by: bcr@, dbaio@, concussious.bugzilla_runbox.com Differential Revision: https://reviews.freebsd.org/D46480
* doc: Update source files (en .po), for translationsDanilo G. Baio2023-07-151-67/+64
|
* solid-state: remove `options MFS` from exampleEd Maste2023-06-211-1/+0
| | | | | | | | | The MFS option was removed decades ago, in commit 49b07961a925. This solid-state article is woefully out of date and needs to be largely rewritten, or just removed. This is just one small change from a PR. PR: 180332
* solid-state: remove 'pseudo-device' from exampleEd Maste2023-06-211-1/+0
| | | | | | | | | | `device md` is in GENERIC, and the `pseudo-device` keyword was removed from kernel config very long go. This solid-state article is woefully out of date and needs to be largely rewritten, or just removed. This is just one small change from a PR. PR: 180330
* doc: Add source .po files for translationsDanilo G. Baio2022-08-071-0/+654
| | | | | | | | | | | | | | | | | | This helps the Weblate translation workflow and offline translations through .po files, it's important to update these files constantly. The goal here is to have a semi-automated translation workflow; Weblate will pull updates automatically from the main repository and commit translations to another repository. Doc committers are encouraged to update the source .po files whenever there are updates in the English documentation part. $ ./tools/update_translate_template.sh documentation Anyway, I'll keep doing this periodically. Discussed with: doceng
* Build offline documentation using Hugo and other improvementsSergio Carlavilla Delgado2021-11-031-0/+21
| | | | | | | | | | | | | | | | | | | | | | * Allow to build the documentation offline using Hugo * Fix link problems * Remove SVN entities * Fix lang problems to help weblate * Move all the AsciiDoctor translations to the shared folder to help weblate * Allow the possibility to build each document. For example each document can be edited in and watched the result in real time in VS Code or Vim/NeoVim. Breaking changes: Eliminate the possibility of building books or articles. They must be builded at the same time. This functionality will be restored when version 0.89.0 is in the repositories in a couple of weeks. Reviewed by: dbaio@ Differential Revision: https://reviews.freebsd.org/D31926
* Remove an extra space after '+' charactersDanilo G. Baio2021-06-081-10/+10
| | | | | | | | | | | | | This is happening only on documentation/, basically in all places that attaches a block or a paragraph to a list [1]. Although this is working, it impacts our translation tool po4a, the '+' character is a difficult part when processing asciidoc[tor] files. 1 - https://docs.asciidoctor.org/asciidoc/latest/lists/continuation/#list-continuation Reviewed by: carlavilla Differential Revision: https://reviews.freebsd.org/D30688
* Improve SEO with the keywors meta tagSergio Carlavilla Delgado2021-05-041-0/+1
| | | | | | Add in all articles and books the tag list. Modify the theme to use the tag list defined in articles and books to generate the keywords meta tag
* Improve descriptions for some books and articlesAllan Jude2021-05-021-1/+1
| | | | | | | | | | Also add weights to some, to define the sort order in the index Put the more commonly used items at the top of their respective lists The improved descriptions were taken from the old books/articles list: https://www.freebsd.org/docs/books/ Sponsored-By: Klara Inc.
* Improve the SEO of the documentation portalSergio Carlavilla Delgado2021-05-011-2/+2
| | | | | | | Changes: - Add the description meta tag in the index, articles and books - Add a brief description in each article and book. - Remove the SVN expansion tag
* Fix typos, style and images pathsSergio Carlavilla Delgado2021-03-201-24/+83
| | | | | Global review of styles, typos and images paths in gjournal-desktop, releng, vinum and vm-design
* Use correct syntax markup for shellLi-Wen Hsu2021-03-141-14/+14
| | | | Approved by: carlavilla
* Migrate doc to Hugo/AsciiDoctorSergio Carlavilla Delgado2021-01-251-0/+245
I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core