Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build
on:
pull_request:
push:
branches: [master]

jobs:

nightly-clippy:
name: Nightly clippy (wasm32)
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: wasm32-unknown-unknown
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: -p vertigo-cmark --all-features --target wasm32-unknown-unknown -- -Dwarnings
name: Vertigo-cmark Clippy Output

# Uncomment after vertigo 0.8.4
# nightly-tests:
# name: Nightly tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# toolchain: nightly
# override: true
# - uses: actions-rs/cargo@v1
# with:
# command: test
# args: --all-features
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/target
Cargo.lock
Cargo.toml.overrides
22 changes: 22 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!-- markdownlint-configure-file { "no-duplicate-heading": { "siblings_only": true } } -->

<!-- markdownlint-disable-next-line first-line-h1 -->
## 0.1.0 - 2025-10-03

### Added

* Regular, bod, italic, strike-through text
* Headings
* Paragraphs
* Tables
* Blockquotes
* Codeblocks
* Code highlighting (with `syntect` feature)
* Lists (numbers, bullets)
* Rules
* Task list markers
* Footnotes
* Soft/hard breaks
* Links
* Images
* Html
Loading
Loading