diff --git a/docs.it4i/storage/nfs4-file-acl.md b/docs.it4i/storage/nfs4-file-acl.md
index 7fa7f72827163798669a6b56cfdd3a35302d8936..66f399a52043802c99ca590bca2f4fbc3c072b96 100644
--- a/docs.it4i/storage/nfs4-file-acl.md
+++ b/docs.it4i/storage/nfs4-file-acl.md
@@ -1,4 +1,4 @@
-# NFSv4 ACL
+NFSv4 ACL
 
 An NFSv4 ACL consists of one or more NFSv4 ACEs (Access Control Entry), each delimited by a comma or whitespace.
 
@@ -10,52 +10,47 @@ An NFSv4 ACE is written as a colon-delimited, 4-field string in the following fo
 
 ## ACE Elements
 
-<ol>
-<li> `<type>` - one of:
+`<type>` - one of:
 
-   | Flag | Name  |
-   | ---- | ----- |
-   | A    | allow |
-   | D    | deny  |
-   | U    | audit |
-   | L    | alarm |
+| Flag | Name  |
+| ---- | ----- |
+| A    | allow |
+| D    | deny  |
+| U    | audit |
+| L    | alarm |
 
-</li>
-<li>`<flags>` - zero or more (depending on `<type>`) of:
+`<flags>` - zero or more (depending on `<type>`) of:
 
-   | Flag | Name                                        |
-   | ---- | ------------------------------------------- |
-   | f    | file-inherit                                |
-   | d    | directory-inherit                           |
-   | p    | no-propagate-inherit                        |
-   | i    | inherit-only                                |
-   | S    | successful-access                           |
-   | F    | failed-access                               |
-   | g    | group (denotes that <principal> is a group) |
+| Flag | Name                                        |
+| ---- | ------------------------------------------- |
+| f    | file-inherit                                |
+| d    | directory-inherit                           |
+| p    | no-propagate-inherit                        |
+| i    | inherit-only                                |
+| S    | successful-access                           |
+| F    | failed-access                               |
+| g    | group (denotes that <principal> is a group) |
 
-</li>
-</ol>
+`<principal>` - named user or group, or one of: `OWNER@`, `GROUP@`, `EVERYONE@`
 
-3. `<principal>` - named user or group, or one of: `OWNER@`, `GROUP@`, `EVERYONE@`
+`<permissions>` - one or more of:
 
-4. `<permissions>` - one or more of:
-
-   | Flag | Name                              |
-   | ---- | --------------------------------- |
-   | r    | read-data / list-directory        |
-   | w    | write-data / create-file          |
-   | a    | append-data / create-subdirectory |
-   | x    | execute                           |
-   | d    | delete                            |
-   | D    | delete-child (directories only)   |
-   | t    | read-attrs                        |
-   | T    | write-attrs                       |
-   | n    | read-named-attrs                  |
-   | N    | write-named-attrs                 |
-   | c    | read-ACL                          |
-   | C    | write-ACL                         |
-   | o    | write-owner                       |
-   | y    | synchronize                       |
+| Flag | Name                              |
+| ---- | --------------------------------- |
+| r    | read-data / list-directory        |
+| w    | write-data / create-file          |
+| a    | append-data / create-subdirectory |
+| x    | execute                           |
+| d    | delete                            |
+| D    | delete-child (directories only)   |
+| t    | read-attrs                        |
+| T    | write-attrs                       |
+| n    | read-named-attrs                  |
+| N    | write-named-attrs                 |
+| c    | read-ACL                          |
+| C    | write-ACL                         |
+| o    | write-owner                       |
+| y    | synchronize                       |
 
 ## Example