markdown_24.0.0_70ffe37b/source/parser/implementation/markdown-implementation-atx_headings.ads

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
--
--  Copyright (C) 2021-2023, AdaCore
--
--  SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--

--  Internal representation of a markdown ATX heading

with Markdown.Annotations;

package Markdown.Implementation.ATX_Headings is
   pragma Preelaborate;

   type ATX_Heading is new Abstract_Block with private;
   --  ATX_Heading block contains annotated inline content

   function Level (Self : ATX_Heading'Class) return Positive;
   --  The heading level is equal to the number of `#` characters in the
   --  opening sequence.

   function Text (Self : ATX_Heading)
     return Markdown.Annotations.Annotated_Text;
   --  Return nested annotated text

   procedure Detector
     (Input : Input_Position;
      Tag   : in out Ada.Tags.Tag;
      CIP   : out Can_Interrupt_Paragraph);
   --  The detector procedure to find start of a ATX_Heading

private

   type ATX_Heading is new Abstract_Block with record
      Level  : Positive range 1 .. 6;
      Title  : VSS.Strings.Virtual_String;
      Parser : access constant Markdown.Inline_Parsers.Inline_Parser;
   end record;

   overriding function Create
     (Input : not null access Input_Position) return ATX_Heading;

   overriding procedure Complete_Parsing
     (Self   : in out ATX_Heading;
      Parser : Markdown.Inline_Parsers.Inline_Parser);

   function Text (Self : ATX_Heading)
     return Markdown.Annotations.Annotated_Text is
       (Self.Parser.Parse (Self.Title.Split_Lines));

   function Level (Self : ATX_Heading'Class) return Positive
     is (Self.Level);

end Markdown.Implementation.ATX_Headings;