|
18 | 18 | with VSS.IRIs; |
19 | 19 | with VSS.XML.Events; |
20 | 20 |
|
21 | | -with Markdown.Annotations.Visitors; |
| 21 | +with Markdown.Inlines.Visitors; |
22 | 22 | with Markdown.Block_Containers; |
23 | 23 | with Markdown.Blocks.Indented_Code; |
24 | 24 | with Markdown.Blocks.Lists; |
@@ -57,7 +57,7 @@ package body GNATdoc.Backend.ODF_Markup is |
57 | 57 | -- Names of styles predefined by GNATdoc |
58 | 58 |
|
59 | 59 | type Annotated_Text_Builder is |
60 | | - limited new Markdown.Annotations.Visitors.Annotated_Text_Visitor with |
| 60 | + limited new Markdown.Inlines.Visitors.Annotated_Text_Visitor with |
61 | 61 | record |
62 | 62 | Image : Boolean := False; |
63 | 63 | Text : VSS.Strings.Virtual_String; |
@@ -98,7 +98,7 @@ package body GNATdoc.Backend.ODF_Markup is |
98 | 98 |
|
99 | 99 | procedure Build_Annotated_Text |
100 | 100 | (Result : in out VSS.XML.Event_Vectors.Vector; |
101 | | - Item : Markdown.Annotations.Annotated_Text'Class); |
| 101 | + Item : Markdown.Inlines.Inline_Vector'Class); |
102 | 102 |
|
103 | 103 | procedure Build_Block |
104 | 104 | (Result : in out VSS.XML.Event_Vectors.Vector; |
@@ -146,10 +146,10 @@ package body GNATdoc.Backend.ODF_Markup is |
146 | 146 |
|
147 | 147 | procedure Build_Annotated_Text |
148 | 148 | (Result : in out VSS.XML.Event_Vectors.Vector; |
149 | | - Item : Markdown.Annotations.Annotated_Text'Class) |
| 149 | + Item : Markdown.Inlines.Inline_Vector'Class) |
150 | 150 | is |
151 | 151 | Visitor : Annotated_Text_Builder; |
152 | | - Iterator : Markdown.Annotations.Visitors.Annotated_Text_Iterator; |
| 152 | + Iterator : Markdown.Inlines.Visitors.Annotated_Text_Iterator; |
153 | 153 |
|
154 | 154 | begin |
155 | 155 | Iterator.Iterate (Item, Visitor); |
|
0 commit comments