]> git.lyx.org Git - lyx.git/blobdiff - lib/layouts/stdlists.inc
fix typos.
[lyx.git] / lib / layouts / stdlists.inc
index 3cf546f1bc80bff7b5c56edae445b949bda40bef..35be3b337cfa3baabccd0304f58cff563483f995 100644 (file)
@@ -7,7 +7,8 @@
 # This include files contains various standard environments for lists.
 
 
-Format 9
+Format 16
+
 Style Itemize
        Category              List
        Margin                Static
@@ -24,6 +25,9 @@ Style Itemize
        AlignPossible         Block, Left
        LabelType             Itemize
        LabelString           "*"
+       HTMLTag               ul
+       HTMLItem              li
+       HTMLLabel             NONE
 End
 
 
@@ -43,9 +47,12 @@ Style Enumerate
        Align                 Block
        AlignPossible         Block, Left
        LabelType             Enumerate
+       LabelCounter          "enum"
+       HTMLTag               ol
+       HTMLItem              li
+       HTMLLabel             NONE
 End
 
-
 Style Description
        Category              List
        Margin                First_Dynamic
@@ -66,6 +73,14 @@ Style Description
        LabelFont
          Series              Bold
        EndFont
+       HTMLTag               dl
+       HTMLAttr              class='description'
+       HTMLItem              dd
+       HTMLLabel             dt
+       HTMLLabelFirst        1
+       HTMLStyle
+               dl.description dt { font-weight: bold; }
+       EndHTMLStyle
 End
 
 
@@ -84,6 +99,11 @@ Style List
        AlignPossible         Block, Left
        LabelType             Manual
        LabelString           "00.00.0000"
+       HTMLTag               ol
+       HTMLAttr              class='lyxlist'
+       HTMLItem              li
+       HTMLLabel             span
+       HTMLLabelAttr         class='lyxlist'
 
        #define the environment lyxlist
        Preamble
@@ -95,4 +115,13 @@ Style List
                                 \renewcommand{\makelabel}[1]{##1\hfil}}}
                        {\end{list}}
        EndPreamble
+
+       HTMLStyle
+               ol.lyxlist {
+                       list-style-type: none;
+               }
+               span.lyxlist {
+                       margin-right: 3em;
+               }
+       EndHTMLStyle
 End