Improve post-colon description formatting

This commit is contained in:
inference 2024-03-24 10:06:24 +00:00
parent 9215af46c7
commit 45376c848e
Signed by: inference
SSH Key Fingerprint: SHA256:FtEVfx1CmTKMy40VwZvF4k+3TC+QhCWy+EmPRg50Nnc

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<!-- Inferencium - Website - About --> <!-- Inferencium - Website - About -->
<!-- Version: 10.2.0-alpha.13 --> <!-- Version: 10.2.0-alpha.14 -->
<!-- Copyright 2022 Jake Winters --> <!-- Copyright 2022 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause --> <!-- SPDX-License-Identifier: BSD-3-Clause -->
@ -201,7 +201,7 @@
<section id="licensing-code-bsd3clause"> <section id="licensing-code-bsd3clause">
<h4><a href="#licensing-code-bsd3clause">BSD 3-Clause License</a></h4> <h4><a href="#licensing-code-bsd3clause">BSD 3-Clause License</a></h4>
<p><b>SPDX License Identifier:</b> <code>BSD-3-Clause</code></p> <p><b>SPDX License Identifier:</b> <code>BSD-3-Clause</code></p>
<p><b>Type: Permissive</b></p> <p><b>Type:</b> Permissive</p>
<p><a href="https://spdx.org/licenses/BSD-3-Clause.html">BSD 3-Clause License</a> <p><a href="https://spdx.org/licenses/BSD-3-Clause.html">BSD 3-Clause License</a>
is a highly-permissive license which allows content licensed under it to be used in is a highly-permissive license which allows content licensed under it to be used in
any way, whether in source or binary form, and allows sublicensing under a different any way, whether in source or binary form, and allows sublicensing under a different
@ -213,7 +213,7 @@
<section id="licensing-code-gpl2.0only"> <section id="licensing-code-gpl2.0only">
<h4><a href="#licensing-code-gpl2.0only">GNU General Public License v2.0</a></h4> <h4><a href="#licensing-code-gpl2.0only">GNU General Public License v2.0</a></h4>
<p><b>SPDX License Identifier:</b> <code>GPL-2.0-only</code></p> <p><b>SPDX License Identifier:</b> <code>GPL-2.0-only</code></p>
<p><b>Type: Copyleft</b></p> <p><b>Type:</b> Copyleft</p>
<p><a href="https://spdx.org/licenses/GPL-2.0-only.html">GNU General Public License v2.0</a> <p><a href="https://spdx.org/licenses/GPL-2.0-only.html">GNU General Public License v2.0</a>
is a strong copyleft license which restricts use of content licensed under it by is a strong copyleft license which restricts use of content licensed under it by
requiring all source code of the content to be publicly available, making requiring all source code of the content to be publicly available, making
@ -235,7 +235,7 @@
<section id="licensing-noncode-ccby4.0"> <section id="licensing-noncode-ccby4.0">
<h4><a href="#licensing-noncode-ccby4.0">Creative Commons Attribution 4.0 International</a></h4> <h4><a href="#licensing-noncode-ccby4.0">Creative Commons Attribution 4.0 International</a></h4>
<p><b>SPDX License Identifier:</b> <code>CC-BY-4.0</code></p> <p><b>SPDX License Identifier:</b> <code>CC-BY-4.0</code></p>
<p><b>Type: Permissive</b></p> <p><b>Type:</b> Permissive</p>
<p><a href="https://spdx.org/licenses/CC-BY-4.0.html">Creative Commons Attribution 4.0 International</a> <p><a href="https://spdx.org/licenses/CC-BY-4.0.html">Creative Commons Attribution 4.0 International</a>
is a highly-permissive license which allows content licensed under it to be used in is a highly-permissive license which allows content licensed under it to be used in
any way, in any medium, with the only restriction being the original copyright any way, in any medium, with the only restriction being the original copyright
@ -282,32 +282,32 @@
<p>There are 4 phases of development. Each phase typically has its own branch in each source <p>There are 4 phases of development. Each phase typically has its own branch in each source
code repository. The phases are as follows:</p> code repository. The phases are as follows:</p>
<ol> <ol>
<li>Alpha: Pre-alpha development and alpha-testing occurs in this phase. Features <li><b>Alpha:</b> Pre-alpha development and alpha-testing occurs in this phase.
are added, modified, and/or removed. Fixes and optimisations may also occur if they Features are added, modified, and/or removed. Fixes and optimisations may also occur
are caught during this phase. This is where the majority of changes occur and where if they are caught during this phase. This is where the majority of changes occur
the fine-grained commits can be found. Breakage is highly likely within this phase and where the fine-grained commits can be found. Breakage is highly likely within
as it makes no attempt to be stable or usable due to being where the most rapid this phase as it makes no attempt to be stable or usable due to being where the most
development occurs. Code is tested internally in a fine-grained manner and is moved rapid development occurs. Code is tested internally in a fine-grained manner and is
to the next phase only when it is deemed feature-complete and reasonably stable for moved to the next phase only when it is deemed feature-complete and reasonably
broader public testing. If you would like to assist in testing code in this phase, stable for broader public testing. If you would like to assist in testing code in
you must use the code and/or tags from the source code repositories due to it not this phase, you must use the code and/or tags from the source code repositories due
being available publicly outside of them.</li> to it not being available publicly outside of them.</li>
<li>Beta: Feature-complete testing occurs in this phase. Only bug fixes and <li><b>Beta:</b> Feature-complete testing occurs in this phase. Only bug fixes and
optimisations occur in this phase, such as stability and security fixes. This phase optimisations occur in this phase, such as stability and security fixes. This phase
is classified as stable enough for broad public testing and is made available is classified as stable enough for broad public testing and is made available
publicly in many cases without having to use the source code repositories. Since publicly in many cases without having to use the source code repositories. Since
this phase contains only feature-complete code, no features will be added, modified, this phase contains only feature-complete code, no features will be added, modified,
or removed in this phase.</li> or removed in this phase.</li>
<li>Release candidate (RC): Feature-complete testing occurs in this phase. Code in <li><b>Release candidate (RC):</b> Feature-complete testing occurs in this phase.
the RC phase is often stable enough for production usage, but is not yet completely Code in the RC phase is often stable enough for production usage, but is not yet
acceptable to be classified as stable by my standards. This phase is often skipped completely acceptable to be classified as stable by my standards. This phase is
due to most bugs being caught in the beta phase, but will be used should the need often skipped due to most bugs being caught in the beta phase, but will be used
arise for finer-grained testing beyond what the beta phase can provide. Like the should the need arise for finer-grained testing beyond what the beta phase can
beta phase, code in this phase is available publicly without requiring usage of the provide. Like the beta phase, code in this phase is available publicly without
source code repositories.</li> requiring usage of the source code repositories.</li>
<li>Stable: Feature-complete and well-tested code is moved to this phase. Code in <li><b>Stable:</b> Feature-complete and well-tested code is moved to this phase.
this phase is deemed to be stable enough for production usage and full support is Code in this phase is deemed to be stable enough for production usage and full
provided.</li> support is provided.</li>
</ol> </ol>
<p>When development of a new version has begun, the code within the alpha phase is rebased <p>When development of a new version has begun, the code within the alpha phase is rebased
onto the most recent code from the stable phase before work commences. This cycle continues onto the most recent code from the stable phase before work commences. This cycle continues
@ -723,9 +723,9 @@
<p>Molly is available in <p>Molly is available in
<a href="https://github.com/mollyim/mollyim-android#free-and-open-source">2 flavours</a>:</p> <a href="https://github.com/mollyim/mollyim-android#free-and-open-source">2 flavours</a>:</p>
<ul> <ul>
<li>Molly, which includes the same proprietary Google <li><b>Molly:</b> Includes the same proprietary Google
code as Signal to support more features</li> code as Signal to support more features</li>
<li>Molly-FOSS, which removes the proprietary Google <li><b>Molly-FOSS:</b> Removes the proprietary Google
code to provide an entirely open-source client</li> code to provide an entirely open-source client</li>
</ul> </ul>
</td> </td>