Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: syntax-tree/mdast-util-to-markdown
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.0
Choose a base ref
...
head repository: syntax-tree/mdast-util-to-markdown
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 20 commits
  • 58 files changed
  • 1 contributor

Commits on Jul 16, 2023

  1. Update dev-dependencies

    wooorm committed Jul 16, 2023
    Copy the full SHA
    f4fd134 View commit details
  2. Copy the full SHA
    5fd2f1e View commit details
  3. 2.1.0

    wooorm committed Jul 16, 2023
    Copy the full SHA
    fd6a508 View commit details

Commits on Oct 25, 2024

  1. Update dev-dependencies

    wooorm committed Oct 25, 2024
    Copy the full SHA
    e1777bc View commit details
  2. Add .tsbuildinfo to .gitignore

    wooorm committed Oct 25, 2024
    Copy the full SHA
    6066cea View commit details
  3. Refactor .editorconfig

    wooorm committed Oct 25, 2024
    Copy the full SHA
    e1f9d43 View commit details
  4. Remove license year

    wooorm committed Oct 25, 2024
    Copy the full SHA
    67e75d2 View commit details
  5. Update Actions

    wooorm committed Oct 25, 2024
    Copy the full SHA
    233b134 View commit details
  6. Refactor package.json

    wooorm committed Oct 25, 2024
    Copy the full SHA
    750b595 View commit details
  7. Add declaration maps

    wooorm committed Oct 25, 2024
    Copy the full SHA
    4d9581a View commit details
  8. Refactor to use @imports

    wooorm committed Oct 25, 2024
    Copy the full SHA
    27270d3 View commit details

Commits on Oct 28, 2024

  1. Refactor types

    wooorm committed Oct 28, 2024
    Copy the full SHA
    df0d6a6 View commit details

Commits on Oct 29, 2024

  1. Copy the full SHA
    97fb818 View commit details
  2. 2.1.1

    wooorm committed Oct 29, 2024
    Copy the full SHA
    ec4eaf0 View commit details

Commits on Nov 4, 2024

  1. Fix crash in more complex content around attention

    Related-to: 97fb818.
    Closes GH-63.
    wooorm committed Nov 4, 2024
    Copy the full SHA
    b0a91ea View commit details
  2. 2.1.2

    wooorm committed Nov 4, 2024
    Copy the full SHA
    d0b9be9 View commit details

Commits on Feb 10, 2025

  1. Update action

    wooorm committed Feb 10, 2025
    Copy the full SHA
    f9a33c1 View commit details
  2. Update dev-dependencies

    wooorm committed Feb 10, 2025
    Copy the full SHA
    d895e91 View commit details
  3. Refactor scripts

    wooorm committed Feb 10, 2025
    Copy the full SHA
    5372dc5 View commit details
  4. Refactor ignore

    wooorm committed Feb 10, 2025
    Copy the full SHA
    ee3b345 View commit details
Showing with 1,756 additions and 1,272 deletions.
  1. +4 −4 .editorconfig
  2. +6 −6 .github/workflows/bb.yml
  3. +8 −8 .github/workflows/main.yml
  4. +7 −4 .gitignore
  5. +4 −311 index.d.ts
  6. +1 −2 lib/configure.js
  7. +2 −5 lib/handle/blockquote.js
  8. +2 −4 lib/handle/break.js
  9. +2 −5 lib/handle/code.js
  10. +2 −4 lib/handle/definition.js
  11. +34 −13 lib/handle/emphasis.js
  12. +4 −9 lib/handle/heading.js
  13. +1 −1 lib/handle/html.js
  14. +2 −4 lib/handle/image-reference.js
  15. +2 −4 lib/handle/image.js
  16. +3 −6 lib/handle/inline-code.js
  17. +2 −4 lib/handle/link-reference.js
  18. +3 −5 lib/handle/link.js
  19. +2 −5 lib/handle/list-item.js
  20. +2 −4 lib/handle/list.js
  21. +2 −4 lib/handle/paragraph.js
  22. +5 −6 lib/handle/root.js
  23. +34 −13 lib/handle/strong.js
  24. +2 −4 lib/handle/text.js
  25. +2 −3 lib/handle/thematic-break.js
  26. +18 −22 lib/index.js
  27. +1 −1 lib/join.js
  28. +966 −0 lib/types.d.ts
  29. +1 −400 lib/types.js
  30. +1 −2 lib/unsafe.js
  31. +1 −1 lib/util/association.js
  32. +1 −2 lib/util/check-bullet-ordered.js
  33. +1 −2 lib/util/check-bullet-other.js
  34. +1 −2 lib/util/check-bullet.js
  35. +1 −2 lib/util/check-emphasis.js
  36. +1 −2 lib/util/check-fence.js
  37. +1 −2 lib/util/check-list-item-indent.js
  38. +1 −2 lib/util/check-quote.js
  39. +1 −2 lib/util/check-rule-repetition.js
  40. +1 −2 lib/util/check-rule.js
  41. +1 −2 lib/util/check-strong.js
  42. +3 −4 lib/util/{pattern-compile.js → compile-pattern.js}
  43. +2 −4 lib/util/container-flow.js
  44. +43 −14 lib/util/container-phrasing.js
  45. +11 −0 lib/util/encode-character-reference.js
  46. +82 −0 lib/util/encode-info.js
  47. +2 −2 lib/util/format-code-as-indented.js
  48. +2 −2 lib/util/format-heading-as-setext.js
  49. +2 −2 lib/util/format-link-as-autolink.js
  50. +1 −1 lib/util/indent-lines.js
  51. +1 −2 lib/util/pattern-in-scope.js
  52. +4 −7 lib/util/safe.js
  53. +1 −4 lib/util/track.js
  54. +1 −1 license
  55. +73 −53 package.json
  56. +251 −241 readme.md
  57. +139 −50 test/index.js
  58. +2 −1 tsconfig.json
8 changes: 4 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
12 changes: 6 additions & 6 deletions .github/workflows/bb.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: bb
on:
issues:
types: [opened, reopened, edited, closed, labeled, unlabeled]
pull_request_target:
types: [opened, reopened, edited, closed, labeled, unlabeled]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: unifiedjs/beep-boop-beta@main
with:
repo-token: ${{secrets.GITHUB_TOKEN}}
name: bb
on:
issues:
types: [closed, edited, labeled, opened, reopened, unlabeled]
pull_request_target:
types: [closed, edited, labeled, opened, reopened, unlabeled]
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: main
on:
- pull_request
- push
jobs:
main:
name: ${{matrix.node}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node}}
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v5
strategy:
matrix:
node:
- lts/gallium
- lts/hydrogen
- node
name: main
on:
- pull_request
- push
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
coverage/
node_modules/
lib/**/*.d.ts
test/**/*.d.ts
*.d.ts
*.log
*.map
*.tsbuildinfo
.DS_Store
coverage/
node_modules/
yarn.lock
!/lib/types.d.ts
!/index.d.ts
Loading