<feed xmlns='http://www.w3.org/2005/Atom'>
<title>doc/documentation/content/pt-br/articles/releng, branch main</title>
<subtitle>FreeBSD documentation tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/'/>
<entry>
<title>pt-br: Fix a few titles</title>
<updated>2022-02-23T23:10:23+00:00</updated>
<author>
<name>Danilo G. Baio</name>
<email>dbaio@FreeBSD.org</email>
</author>
<published>2022-02-23T23:10:23+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/commit/?id=277cb2fdf4dcff0eaa4bc2acd8b410a086d84615'/>
<id>277cb2fdf4dcff0eaa4bc2acd8b410a086d84615</id>
<content type='text'>
Reported by:	Pau Amma
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reported by:	Pau Amma
</pre>
</div>
</content>
</entry>
<entry>
<title>Build offline documentation using Hugo and other improvements</title>
<updated>2021-11-03T16:44:52+00:00</updated>
<author>
<name>Sergio Carlavilla Delgado</name>
<email>carlavilla@FreeBSD.org</email>
</author>
<published>2021-11-03T16:39:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/commit/?id=64acd169b82416fe39ad8c4b1be106680d4a3eb3'/>
<id>64acd169b82416fe39ad8c4b1be106680d4a3eb3</id>
<content type='text'>
* 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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 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
</pre>
</div>
</content>
</entry>
<entry>
<title>pt-br/articles: Fix include links</title>
<updated>2021-10-29T13:19:31+00:00</updated>
<author>
<name>Marc Fonvieille</name>
<email>blackend@FreeBSD.org</email>
</author>
<published>2021-10-29T13:19:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/commit/?id=eb3f72b7dc32dfc9d61d35531da7129925d16778'/>
<id>eb3f72b7dc32dfc9d61d35531da7129925d16778</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Add Hugo's lang shortcode"</title>
<updated>2021-06-19T21:30:16+00:00</updated>
<author>
<name>Danilo G. Baio</name>
<email>dbaio@FreeBSD.org</email>
</author>
<published>2021-06-19T21:30:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/commit/?id=8e22e76d94dc5fef83abcb3c082ab4242ef90ba2'/>
<id>8e22e76d94dc5fef83abcb3c082ab4242ef90ba2</id>
<content type='text'>
This reverts commit 3462d12db6ebf303064db168a2333374344f369a.

Too soon, it broke asciidoctor-pdf which doesn't know Hugo's shortcode.
It will take more time and care.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 3462d12db6ebf303064db168a2333374344f369a.

Too soon, it broke asciidoctor-pdf which doesn't know Hugo's shortcode.
It will take more time and care.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Hugo's lang shortcode</title>
<updated>2021-06-19T19:09:00+00:00</updated>
<author>
<name>Danilo G. Baio</name>
<email>dbaio@FreeBSD.org</email>
</author>
<published>2021-06-19T18:56:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/commit/?id=3462d12db6ebf303064db168a2333374344f369a'/>
<id>3462d12db6ebf303064db168a2333374344f369a</id>
<content type='text'>
This is a prerequisite for the translation workflow through .po files
and Weblate.

The asciidoctor include with the shortcode variable will help because
won't be needed to change the includes manually after converting the
translation (.po file) back to .adoc.

It will help other areas like, language attributes, which today is fixed
in every document.

The use of shortcode was suggested by jmooring@ from Hugo's project on
Github.

Reviewed by:	carlavilla
Differential Revision: https://reviews.freebsd.org/D30823
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a prerequisite for the translation workflow through .po files
and Weblate.

The asciidoctor include with the shortcode variable will help because
won't be needed to change the includes manually after converting the
translation (.po file) back to .adoc.

It will help other areas like, language attributes, which today is fixed
in every document.

The use of shortcode was suggested by jmooring@ from Hugo's project on
Github.

Reviewed by:	carlavilla
Differential Revision: https://reviews.freebsd.org/D30823
</pre>
</div>
</content>
</entry>
<entry>
<title>Use correct syntax markup for shell</title>
<updated>2021-03-14T12:08:55+00:00</updated>
<author>
<name>Li-Wen Hsu</name>
<email>lwhsu@FreeBSD.org</email>
</author>
<published>2021-03-14T12:08:55+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/commit/?id=a9a9e661059557e5bb6ab3e756e007b8e5d231ce'/>
<id>a9a9e661059557e5bb6ab3e756e007b8e5d231ce</id>
<content type='text'>
Approved by:	carlavilla
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:	carlavilla
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate doc to Hugo/AsciiDoctor</title>
<updated>2021-01-25T23:31:29+00:00</updated>
<author>
<name>Sergio Carlavilla Delgado</name>
<email>carlavilla@FreeBSD.org</email>
</author>
<published>2021-01-25T23:31:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/doc/commit/?id=989d921f5d4ac8d8b7c831c13b8954ad1901be24'/>
<id>989d921f5d4ac8d8b7c831c13b8954ad1901be24</id>
<content type='text'>
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 &lt;bcr@&gt;
Glen Barber &lt;gjb@&gt;
Hiroki Sato &lt;hrs@&gt;
Li-Wen Hsu &lt;lwhsu@&gt;
Sean Chittenden &lt;seanc@&gt;
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;bcr@&gt;
Glen Barber &lt;gjb@&gt;
Hiroki Sato &lt;hrs@&gt;
Li-Wen Hsu &lt;lwhsu@&gt;
Sean Chittenden &lt;seanc@&gt;
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
</pre>
</div>
</content>
</entry>
</feed>
