btrfs-progs: docs: convert Experimental.md to RST

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2022-05-17 23:11:03 +02:00
parent 90850c26fa
commit fa8c64ec29
2 changed files with 11 additions and 5 deletions

View File

@ -11,6 +11,8 @@ filed as issues.
In the code use it like:
.. code-block::
if (EXPERIMENTAL) {
...
}
@ -20,16 +22,19 @@ where it would break default build.
Or:
.. code-block::
#if EXPERIMENTAL
...
#endif
for larger code blocks.
Do not use `#ifdef` as the macro is always defined so this would not work as
expected.
.. note::
Do not use `#ifdef` as the macro is always defined so this would not work as
expected.
Each feature should be tracked in an issue with label
[experimental](https://github.com/kdave/btrfs-progs/labels/experimental), with
a description and a todo list items. Individual tasks can be tracked in other
Each feature should be tracked in an issue with label **experimental** (list of
active issues https://github.com/kdave/btrfs-progs/labels/experimental), with a
description and a todo list items. Individual tasks can be tracked in other
issues if needed.

View File

@ -51,3 +51,4 @@ Welcome to BTRFS documentation!
Interoperability
project-index
trouble-index
Experimental