Skip to content

Commit

Permalink
[TASK] Add tests for images with relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
linawolf committed Oct 11, 2024
1 parent a09300d commit 9a8fbdd
Show file tree
Hide file tree
Showing 12 changed files with 432 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- content start -->
<div class="section" id="dir-2-title">
<h1>Dir 2 Title</h1>

<p>Lorem Ipsum Dolor.</p>


<p><img src="../../images/hero-illustration.svg" alt="Hero Illustrations"/></p>

</div>
<!-- content end -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!-- content start -->
<div class="section" id="some-page-in-dir-2">
<h1>Some Page in dir 2</h1>

<p>Lorem Ipsum <code>Dolor</code>.</p>

</div>
<!-- content end -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!-- content start -->
<div class="section" id="dir-1-title">
<h1>Dir 1 Title</h1>

<p>Lorem Ipsum Dolor.</p>


<p><img src="../images/hero-illustration.svg" alt="Hero Illustrations"/></p>

</div>
<!-- content end -->
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!-- content start -->
<div class="section" id="document-title">
<h1>Document Title</h1>

<p>Lorem Ipsum Dolor.</p>

</div>
<!-- content end -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Dir 2 Title

Lorem Ipsum Dolor.

![Hero Illustrations](../../images/hero-illustration.svg)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# Some Page in dir 2

Lorem Ipsum `Dolor`.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Dir 1 Title

Lorem Ipsum Dolor.

![Hero Illustrations](../images/hero-illustration.svg)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" ?>
<guides xmlns="https://www.phpdoc.org/guides"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.phpdoc.org/guides packages/guides-cli/resources/schema/guides.xsd"
theme="bootstrap"
input-format="md"
links-are-relative="1"
automatic-menu="true"
>
<extension class="phpDocumentor\Guides\Bootstrap"/>
</guides>
Loading

0 comments on commit 9a8fbdd

Please sign in to comment.