markdown_24.0.0_70ffe37b/source/parser/implementation/markdown-implementation-quotes.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
--
--  Copyright (C) 2021-2023, AdaCore
--
--  SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--

--  Internal representation of a block quote

package Markdown.Implementation.Quotes is

   pragma Preelaborate;

   type Quote is new Abstract_Container_Block with private;
   --  The quote is a node for markdown block quote representation

   type Quote_Access is access all Quote;

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

private
   type Quote is new Abstract_Container_Block with null record;

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

   overriding procedure Consume_Continuation_Markers
     (Self  : in out Quote;
      Input : in out Input_Position;
      Ok    : out Boolean);

end Markdown.Implementation.Quotes;