1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6namespace App\Libraries\Markdown\CustomContainerInline;
7
8use League\CommonMark\Node\Inline\AbstractInline;
9use League\CommonMark\Node\Inline\DelimitedInterface;
10
11class Element extends AbstractInline implements DelimitedInterface
12{
13 public function getOpeningDelimiter(): string
14 {
15 return '::';
16 }
17
18 public function getClosingDelimiter(): string
19 {
20 return '::';
21 }
22}