Commit 01d1cf25 authored by Canek Peláez's avatar Canek Peláez
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+14 −0
Original line number Diff line number Diff line
configure:
  script:
    - meson setup build

compile:
  script:
    - meson setup build
    - ninja -C build

test:
  script:
    - meson setup build
    - ninja -C build
    - ninja -C build test
+6 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
  <gresource prefix="/org/commonmark">
    <file>entities.properties</file>
  </gresource>
</gresources>
+2126 −0

File added.

Preview size limit exceeded, changes collapsed.

data/test.md

0 → 100644
+73 −0
Original line number Diff line number Diff line
*Italic*

_Italic_

**Bold**
__Bold__

# Heading 1

Heading 1
=========

## Heading 2

Heading 2
---------

[Link](https://aztlan.fciencias.unam.mx/~canek/images/canek.jpg)

[Link][1]
[1]: https://aztlan.fciencias.unam.mx/~canek/images/canek.jpg

![Image](https://aztlan.fciencias.unam.mx/~canek/images/canek.jpg)

![Image][1]
[1]: https://aztlan.fciencias.unam.mx/~canek/images/canek.jpg

> Va de cuento nos regía  
> un capitán que venía  
> malherido en el afán  
> de su primera agonía  
> ¡Señores, qué capitán,  
> el capitán de aquel día!  

* List 1
* List 2
* List 3

- List 1
- List 2
- List 3

1. One
2. Two
3. Three

1) One
2) Two
3) Three

---

Texto

***

Texto

`Inline code` with backticks

***texto***


```
# code block
print '3 backticks or'
print 'indent 4 spaces'
```

    # code block
    print '3 backticks or'
    print 'indent 4 spaces'
+12 −0
Original line number Diff line number Diff line
namespace Commonmark {

    /**
     * Base interface for a parser/renderer extension.
     *
     * Doesn't have any methods itself, but has specific sub interfaces to
     * configure parser/renderer. This base interface is for convenience, so
     * that a list of extensions can be built and then used for configuring both
     * the parser and renderer in the same way.
     */
    public interface Extension : GLib.Object {}
}
Loading