diff options
author | Nicolas Jesenberger <71784091+njsen@users.noreply.github.com> | 2021-11-28 23:17:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-28 23:17:21 +0100 |
commit | 1adc79897fe49bc407dbd7e71a61c854bc92f347 (patch) | |
tree | 2dfb762600ded37b05e84edf7b1ff54d436475f9 | |
parent | bc1181a348c2f17170b59a9418da6ae7056efcde (diff) | |
download | translated-content-1adc79897fe49bc407dbd7e71a61c854bc92f347.tar.gz translated-content-1adc79897fe49bc407dbd7e71a61c854bc92f347.tar.bz2 translated-content-1adc79897fe49bc407dbd7e71a61c854bc92f347.zip |
Fix: Ordered List Wrong Attribute (#3216)
<ol start="i"> should be <ol type="i"> in order to display Roman numeral type
-rw-r--r-- | files/fr/web/html/element/ol/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/html/element/ol/index.md b/files/fr/web/html/element/ol/index.md index 0d7e7302d1..1ad590cfad 100644 --- a/files/fr/web/html/element/ol/index.md +++ b/files/fr/web/html/element/ol/index.md @@ -164,7 +164,7 @@ Le HTML ci-dessus affichera : ### Utilisation des chiffres romains ```html -<ol start="i"> +<ol type="i"> <li>Introduction</li> <li>Liste des Greffes</li> <li>Conclusion</li> |