Skip to content

Conversation

@marihachi
Copy link
Contributor

@marihachi marihachi commented Aug 10, 2025

What

このPRではfull parserに対してリスト構文のパース処理を追加します。
ひとまず一段のリストのサポートが含まれます。

listノードおよびlistItemノードを追加します。

入力例:

- text1 **bold** :emoji:
- text2

生成されるノードツリー:

  • list
    • listItem
      • text "text1 "
      • bold
        • text "bold"
      • text " "
      • emojiCode "emoji"
    • listItem
      • text "text2"

resolve #157

Why

Additional info (optional)

@codecov
Copy link

codecov bot commented Aug 10, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 97.66%. Comparing base (2648486) to head (66c598c).

Additional details and impacted files
@@             Coverage Diff             @@
##           develop     #165      +/-   ##
===========================================
+ Coverage    97.59%   97.66%   +0.06%     
===========================================
  Files            7        7              
  Lines         1083     1114      +31     
  Branches       304      312       +8     
===========================================
+ Hits          1057     1088      +31     
  Misses          26       26              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@marihachi marihachi marked this pull request as ready for review August 10, 2025 10:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

リスト構文が欲しい

1 participant