ci: add GitHub Actions workflows for upstream sync and release automation
This commit is contained in:
parent
0d201261c8
commit
5d421e8a76
7035 changed files with 106275 additions and 0 deletions
22
tests/e2e/output/converters/pandoc/input.md
Normal file
22
tests/e2e/output/converters/pandoc/input.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Test Document
|
||||
|
||||
This is a **test** document for E2E testing.
|
||||
|
||||
## Code Example
|
||||
|
||||
```javascript
|
||||
console.log("Hello, World!");
|
||||
```
|
||||
|
||||
## List
|
||||
|
||||
1. First item
|
||||
2. Second item
|
||||
3. Third item
|
||||
|
||||
## Table
|
||||
|
||||
| Name | Value |
|
||||
|------|-------|
|
||||
| A | 1 |
|
||||
| B | 2 |
|
||||
BIN
tests/e2e/output/converters/pandoc/output.docx
Normal file
BIN
tests/e2e/output/converters/pandoc/output.docx
Normal file
Binary file not shown.
30
tests/e2e/output/converters/pandoc/output.html
Normal file
30
tests/e2e/output/converters/pandoc/output.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<h1 id="test-document">Test Document</h1>
|
||||
<p>This is a <strong>test</strong> document for E2E testing.</p>
|
||||
<h2 id="code-example">Code Example</h2>
|
||||
<div class="sourceCode" id="cb1"><pre
|
||||
class="sourceCode javascript"><code class="sourceCode javascript"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="bu">console</span><span class="op">.</span><span class="fu">log</span>(<span class="st">"Hello, World!"</span>)<span class="op">;</span></span></code></pre></div>
|
||||
<h2 id="list">List</h2>
|
||||
<ol type="1">
|
||||
<li>First item</li>
|
||||
<li>Second item</li>
|
||||
<li>Third item</li>
|
||||
</ol>
|
||||
<h2 id="table">Table</h2>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>A</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>B</td>
|
||||
<td>2</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
28
tests/e2e/output/converters/pandoc/output.rst
Normal file
28
tests/e2e/output/converters/pandoc/output.rst
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
Test Document
|
||||
=============
|
||||
|
||||
This is a **test** document for E2E testing.
|
||||
|
||||
Code Example
|
||||
------------
|
||||
|
||||
.. code:: javascript
|
||||
|
||||
console.log("Hello, World!");
|
||||
|
||||
List
|
||||
----
|
||||
|
||||
1. First item
|
||||
2. Second item
|
||||
3. Third item
|
||||
|
||||
Table
|
||||
-----
|
||||
|
||||
==== =====
|
||||
Name Value
|
||||
==== =====
|
||||
A 1
|
||||
B 2
|
||||
==== =====
|
||||
Loading…
Add table
Add a link
Reference in a new issue