Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use package_json gem #1639

Merged
merged 10 commits into from
Jul 3, 2024
Merged

Use package_json gem #1639

merged 10 commits into from
Jul 3, 2024

Conversation

vaukalak
Copy link
Contributor

@vaukalak vaukalak commented Jun 25, 2024

Summary

Since shakapacker V8+ uses package_json gem, this is now supported in react_on_rails as well. This PR closes issue #1635..

Pull Request checklist

Remove this line after checking all the items here. If the item is not applicable to the PR, both check it out and wrap it by ~.

  • Add/update test to cover these changes
  • Update documentation
  • Update CHANGELOG file
    Add the CHANGELOG entry at the top of the file.

This change is Reviewable

Summary by CodeRabbit

  • Improvements

    • Enhanced dependency management for easier and more reliable package handling.
    • Updated installation documentation for a streamlined setup process.
    • Improved support for modern versions of Shakapacker.
  • Documentation

    • Simplified installation instructions in the Getting Started guide.
  • Development

    • Added the package_json gem to development dependencies for better package management.

Copy link

coderabbitai bot commented Jun 25, 2024

Walkthrough

The changes enhance dependency management by centralizing the handling of yarn dependencies through the package_json manager, thereby replacing direct yarn command invocations. This refactor improves code clarity and maintainability. Additional methods and comments have been added, and some console outputs were included for better debugging. Shakapacker version checks were introduced, and documentation and development files were updated accordingly.

Changes

Files/Groups Change Summary
lib/generators/react_on_rails/base..., react_with..., generator_helper.rb Centralized yarn dependency management using package_json.manager.add method; additional comments and console outputs.
lib/generators/react_on_rails/install_generator.rb Added Shakapacker version check and necessary require statements.
CHANGELOG.md, Gemfile.development_dependencies Updated changelog for clarity on dependency management changes; added package_json gem.
docs/getting-started.md Simplified Shakapacker installation instructions.
rakelib/webpacker_examples.rake Refined shell commands for generating react_on_rails configurations within webpacker examples.

Poem

🐇✨

In lines of code where changes flow,
Dependency whispers start to grow.
A package JSON brave and bold,
Handles yarn with a touch of gold.
Shakapacker checks, comments wise,
A smoother setup, a sweet surprise.
With every update, clear and bright,
The rails rejoice in coder's light.

🌟🐰

Tip

AI model upgrade

gpt-4o model for reviews and chat is now live

OpenAI claims that this model is better at understanding and generating code than the previous models. Please join our Discord Community to provide any feedback or to report any issues.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 76c6b50 and 4c9bb28.

Files selected for processing (3)
  • lib/generators/react_on_rails/base_generator.rb (1 hunks)
  • lib/generators/react_on_rails/generator_helper.rb (1 hunks)
  • lib/generators/react_on_rails/react_with_redux_generator.rb (1 hunks)
Additional comments not posted (4)
lib/generators/react_on_rails/react_with_redux_generator.rb (1)

8-8: Inclusion of GeneratorHelper module.

Including the GeneratorHelper module is a good practice as it promotes code reuse and modularity. Ensure that all methods from GeneratorHelper are compatible and necessary for ReactWithReduxGenerator.

lib/generators/react_on_rails/generator_helper.rb (2)

6-12: Method to require package_json gem dynamically.

This method dynamically requires the package_json gem, which is a good approach for modular and conditional loading. However, ensure that the PackageJson::VERSION is always available after the gem is required.


14-22: Initialization and caching of package_json.

This method effectively caches the package_json object, reducing the need to reinitialize it multiple times. It's a good use of lazy loading patterns. Ensure that the @app_path is correctly set before calling PackageJson.read.

lib/generators/react_on_rails/base_generator.rb (1)

82-112: Refactored dependency management using package_json.manager.add.

The refactoring from direct yarn commands to using package_json.manager.add is a significant improvement in managing dependencies more programmatically and error-resiliently. Ensure that the dependency versions and types are correctly handled in all scenarios, especially in conditional logic blocks.

Verification successful

Refactored dependency management using package_json.manager.add.

The refactoring from direct yarn commands to using package_json.manager.add is a significant improvement in managing dependencies more programmatically and error-resiliently. The usage of package_json.manager.add is consistent within the lib/generators/react_on_rails/base_generator.rb file. Ensure that the dependency versions and types are correctly handled in all scenarios, especially in conditional logic blocks.

  • Verified consistent usage of package_json.manager.add within the file.
Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify that `package_json.manager.add` is used correctly across the project.

# Test: Search for the method usage. Expect: Consistent usage and handling of parameters.
rg --type ruby $'package_json.manager.add'

Length of output: 521

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 4c9bb28 and b650f83.

Files selected for processing (3)
  • lib/generators/react_on_rails/base_generator.rb (1 hunks)
  • lib/generators/react_on_rails/generator_helper.rb (1 hunks)
  • lib/generators/react_on_rails/install_generator.rb (2 hunks)
Additional comments not posted (1)
lib/generators/react_on_rails/generator_helper.rb (1)

14-22: Good use of lazy initialization for package_json.

This method efficiently handles the initialization and caching of the package_json object, ensuring that the gem is loaded only when needed.

lib/generators/react_on_rails/generator_helper.rb Outdated Show resolved Hide resolved
lib/generators/react_on_rails/install_generator.rb Outdated Show resolved Hide resolved
lib/generators/react_on_rails/base_generator.rb Outdated Show resolved Hide resolved
Gemfile.lock Outdated Show resolved Hide resolved
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between b650f83 and c281479.

Files ignored due to path filters (1)
  • Gemfile.lock is excluded by !**/*.lock
Files selected for processing (2)
  • lib/generators/react_on_rails/base_generator.rb (1 hunks)
  • lib/generators/react_on_rails/generator_helper.rb (1 hunks)
Files skipped from review due to trivial changes (1)
  • lib/generators/react_on_rails/generator_helper.rb
Files skipped from review as they are similar to previous changes (1)
  • lib/generators/react_on_rails/base_generator.rb

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between c281479 and 5c830e7.

Files selected for processing (1)
  • lib/generators/react_on_rails/base_generator.rb (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • lib/generators/react_on_rails/base_generator.rb

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Outside diff range and nitpick comments (9)
docs/getting-started.md (9)

Line range hint 5-5: Typographical Correction: Use "of" instead of "with".

The preposition ‘of’ seems more appropriate in this context.

- For installation on Shakapacker 6, check [tips for usage with Shakapacker 6](https://www.shakacode.com/react-on-rails/docs/aditional-details/tips-for-usage-with-sp6) first.
+ For installation of Shakapacker 6, check [tips for usage with Shakapacker 6](https://www.shakacode.com/react-on-rails/docs/aditional-details/tips-for-usage-with-sp6) first.

Line range hint 14-14: Grammar Improvement: Add a comma after "typically".

Adding a comma after ‘typically’ improves clarity.

- for more details but typically you need the following steps:
+ for more details, but typically, you need the following steps:

Line range hint 33-33: Grammar Improvement: Use "installation" instead of "install".

The word ‘install’ is not a noun. Replace it with ‘installation’.

- 2. Run the install generator:
+ 2. Run the installation generator:

Line range hint 98-98: Stylistic Improvement: Use "can" instead of "able to".

As a shorter alternative for ‘able to’, consider using “can”.

- is able to reference your component from a Rails view.
+ can reference your component from a Rails view.

Line range hint 98-98: Typographical Correction: Capitalize "React".

“React” is a proper noun and needs to be capitalized.

- via the react_on_rails webpack configuration.
+ via the React_on_rails webpack configuration.

Line range hint 100-100: Grammar Improvement: Add a subject to form a complete sentence.

To form a complete sentence, be sure to include a subject.

- This is an optional argument assuming you do not need to pass any options
+ This is an optional argument assuming you do not need to pass any options.

Line range hint 129-129: Stylistic Improvement: Use "inside" instead of "inside of".

This phrase is redundant. Consider using “inside”.

- mount them with helpers inside of your Rails views
+ mount them with helpers inside your Rails views

Line range hint 144-144: Grammar Improvement: Add a hyphen for compound adjective.

If this is a compound adjective that modifies the following noun, use a hyphen.

- different server side entry file,
+ different server-side entry file,

Line range hint 150-150: Grammar Improvement: Add auxiliary verb.

An auxiliary verb seems to be missing from this progressive structure. Did you mean “we're using”, “we are using”, or “we were using”?

- which we using the name of a "render-function".
+ which we are using the name of a "render-function".
Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 5c830e7 and 8bbc55d.

Files ignored due to path filters (1)
  • Gemfile.lock is excluded by !**/*.lock
Files selected for processing (4)
  • CHANGELOG.md (1 hunks)
  • docs/getting-started.md (1 hunks)
  • lib/generators/react_on_rails/base_generator.rb (1 hunks)
  • lib/generators/react_on_rails/generator_helper.rb (1 hunks)
Files skipped from review as they are similar to previous changes (2)
  • lib/generators/react_on_rails/base_generator.rb
  • lib/generators/react_on_rails/generator_helper.rb
Additional context used
LanguageTool
docs/getting-started.md

[uncategorized] ~5-~5: The preposition ‘of’ seems more likely in this position.
Context: ...ls with Shakapacker 7. For installation on Shakapacker 6, check [tips for usage wi...

(AI_HYDRA_LEO_REPLACE_ON_OF)


[uncategorized] ~14-~14: Use a comma before ‘but’ if it connects two independent clauses (unless they are closely connected and short).
Context: .../shakacode/shakapacker) for more details but typically you need the following steps:...

(COMMA_COMPOUND_SENTENCE)


[typographical] ~14-~14: Consider adding a comma after ‘typically’ for more clarity.
Context: ...acode/shakapacker) for more details but typically you need the following steps: ```bash ...

(RB_LY_COMMA)


[grammar] ~33-~33: The word ‘install’ is not a noun.
Context: ...ption --ignore-warnings). 2. Run the install generator: ```bash rails generat...

(A_INSTALL)


[style] ~98-~98: As a shorter alternative for ‘able to’, consider using “can”.
Context: ...onent in this way is how React on Rails is able to reference your component from a Rails v...

(BE_ABLE_TO)


[grammar] ~98-~98: “React” is a proper noun and needs to be capitalized.
Context: ... how you expose your components via the react_on_rails webpack configuration. You may...

(A_GOOGLE)


[style] ~100-~100: To form a complete sentence, be sure to include a subject.
Context: ....registermany times. -@some_props` can be either a hash or JSON string. This i...

(MISSING_IT_THERE)


[style] ~129-~129: This phrase is redundant. Consider using “inside”.
Context: ...nRails and then mount them with helpers inside of your Rails views**. This is how to exp...

(OUTSIDE_OF)


[uncategorized] ~144-~144: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: ...iguration file that can use a different server side entry file, like 'serverRegistration.j...

(EN_COMPOUND_ADJECTIVE_INTERNAL)


[grammar] ~150-~150: An auxiliary verb seems to be missing from this progressive structure. Did you mean “we're using”, “we are using”, or “we were using”?
Context: ...n that returns a React component, which we using the name of a "render-function". Creati...

(PRP_VBG)

Markdownlint
docs/getting-started.md

140-140: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


72-72: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


73-73: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


74-74: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


190-190: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


191-191: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


46-46: Expected: 1; Actual: 2
Multiple consecutive blank lines

(MD012, no-multiple-blanks)


44-44: null
Bare URL used

(MD034, no-bare-urls)


195-195: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


195-195: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)

CHANGELOG.md

306-306: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


437-437: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


535-535: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


544-544: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


548-548: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


559-559: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


572-572: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


578-578: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


583-583: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


606-606: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


610-610: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


617-617: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


622-622: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


630-630: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


635-635: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


644-644: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


649-649: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


660-660: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


664-664: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


672-672: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


680-680: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


701-701: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


705-705: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


711-711: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


718-718: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


726-726: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


736-736: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


740-740: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


744-744: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


749-749: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


755-755: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


759-759: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


774-774: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


778-778: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


782-782: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


787-787: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


799-799: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


803-803: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


807-807: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


811-811: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


815-815: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


819-819: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


870-870: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


881-881: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


888-888: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


904-904: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


915-915: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


920-920: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


925-925: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


930-930: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


958-958: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


962-962: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


966-966: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


971-971: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


977-977: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


981-981: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


985-985: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1018-1018: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1024-1024: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1029-1029: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1038-1038: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1098-1098: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1114-1114: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1122-1122: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1138-1138: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


257-257: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


258-258: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


259-259: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


260-260: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


261-261: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


264-264: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


266-266: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


267-267: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


269-269: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


280-280: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


369-369: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


370-370: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


536-536: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


537-537: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


538-538: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


539-539: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


945-945: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


2-2: Expected: 0 or 2; Actual: 1
Trailing spaces

(MD009, no-trailing-spaces)


8-8: Expected: 0 or 2; Actual: 1
Trailing spaces

(MD009, no-trailing-spaces)


99-99: Expected: 0 or 2; Actual: 1
Trailing spaces

(MD009, no-trailing-spaces)


113-113: Expected: 0 or 2; Actual: 43
Trailing spaces

(MD009, no-trailing-spaces)


939-939: Column: 2
Hard tabs

(MD010, no-hard-tabs)


959-959: Column: 2
Hard tabs

(MD010, no-hard-tabs)


963-963: Column: 2
Hard tabs

(MD010, no-hard-tabs)


968-968: Column: 2
Hard tabs

(MD010, no-hard-tabs)


73-73: Expected: 1; Actual: 2
Multiple consecutive blank lines

(MD012, no-multiple-blanks)


520-520: Expected: 1; Actual: 2
Multiple consecutive blank lines

(MD012, no-multiple-blanks)


1-1: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


14-14: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


17-17: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


18-18: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


18-18: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


21-21: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


26-26: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


33-33: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


38-38: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


41-41: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


44-44: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


48-48: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


55-55: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


58-58: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


59-59: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


59-59: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


62-62: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


65-65: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


68-68: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


74-74: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


75-75: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


75-75: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


80-80: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


83-83: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


88-88: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


93-93: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


96-96: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


97-97: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


97-97: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


100-100: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


103-103: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


104-104: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


104-104: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


109-109: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


114-114: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


118-118: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


123-123: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


134-134: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


148-148: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


149-149: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


149-149: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


152-152: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


153-153: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


153-153: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


156-156: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


157-157: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


157-157: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


160-160: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


166-166: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


169-169: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


170-170: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


170-170: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


175-175: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


180-180: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


185-185: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


189-189: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


190-190: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


190-190: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


197-197: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


198-198: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


198-198: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


204-204: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


205-205: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


205-205: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


209-209: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


210-210: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


210-210: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


213-213: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


216-216: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


217-217: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


217-217: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


220-220: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


221-221: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


221-221: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


228-228: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


229-229: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


229-229: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


232-232: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


233-233: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


233-233: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


236-236: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


239-239: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


245-245: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


256-256: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


290-290: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


291-291: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


291-291: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


298-298: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


299-299: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


299-299: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


302-302: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


303-303: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


303-303: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


306-306: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


311-311: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


320-320: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


325-325: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


328-328: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


329-329: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


329-329: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


332-332: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


333-333: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


333-333: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


336-336: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


337-337: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


337-337: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


342-342: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


349-349: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


355-355: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


362-362: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


363-363: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


363-363: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


366-366: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


367-367: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


367-367: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


371-371: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


371-371: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


374-374: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


375-375: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


375-375: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


379-379: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


382-382: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


383-383: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


383-383: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


388-388: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


391-391: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


392-392: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


392-392: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


395-395: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


396-396: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


396-396: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


399-399: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


400-400: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


400-400: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


405-405: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


414-414: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


419-419: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


424-424: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


427-427: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


432-432: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


437-437: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


446-446: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


456-456: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


463-463: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


464-464: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


464-464: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


467-467: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


468-468: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


468-468: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


471-471: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


472-472: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


472-472: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


475-475: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


476-476: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


476-476: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


480-480: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


484-484: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


485-485: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


485-485: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


488-488: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


489-489: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


489-489: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


496-496: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


497-497: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


497-497: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


499-499: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


499-499: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


504-504: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


505-505: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


505-505: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


508-508: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


509-509: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


509-509: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


514-514: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


517-517: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


521-521: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


524-524: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


525-525: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


525-525: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


528-528: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


529-529: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


529-529: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


534-534: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


535-535: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


535-535: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


543-543: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


544-544: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


544-544: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


547-547: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


548-548: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


548-548: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


558-558: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


559-559: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


559-559: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


562-562: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


571-571: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


572-572: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


572-572: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


578-578: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


583-583: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


586-586: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


596-596: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


599-599: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


602-602: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


605-605: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


606-606: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


606-606: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


609-609: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


610-610: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


610-610: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


613-613: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


616-616: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


617-617: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


617-617: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


622-622: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


625-625: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


630-630: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


635-635: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


638-638: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


644-644: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


649-649: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


652-652: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


655-655: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


659-659: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


660-660: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


660-660: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


663-663: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


664-664: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


664-664: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


667-667: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


668-668: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


668-668: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


671-671: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


672-672: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


672-672: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


675-675: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


680-680: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


693-693: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


696-696: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


700-700: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


701-701: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


701-701: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


704-704: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


705-705: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


705-705: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


710-710: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


711-711: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


711-711: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


714-714: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


717-717: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


718-718: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


718-718: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


721-721: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


726-726: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


729-729: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


732-732: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


735-735: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


736-736: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


736-736: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


739-739: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


740-740: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


740-740: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


743-743: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


744-744: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


744-744: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


748-748: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


749-749: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


749-749: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


754-754: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


755-755: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


755-755: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


758-758: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


759-759: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


759-759: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


768-768: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


773-773: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


774-774: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


774-774: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


777-777: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


778-778: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


778-778: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


781-781: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


782-782: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


782-782: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


787-787: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


793-793: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


798-798: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


799-799: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


799-799: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


802-802: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


803-803: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


803-803: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


806-806: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


807-807: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


807-807: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


810-810: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


811-811: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


811-811: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


814-814: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


815-815: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


815-815: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


818-818: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


819-819: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


819-819: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


847-847: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


851-851: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


857-857: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


863-863: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


869-869: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


870-870: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


870-870: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


874-874: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


880-880: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


881-881: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


881-881: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


884-884: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


887-887: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


888-888: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


888-888: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


904-904: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


907-907: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


910-910: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


915-915: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


920-920: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


925-925: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


930-930: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


944-944: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


947-947: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


952-952: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


957-957: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


958-958: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


958-958: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


961-961: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


962-962: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


962-962: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


965-965: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


966-966: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


966-966: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


970-970: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


971-971: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


971-971: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


976-976: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


977-977: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


977-977: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


980-980: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


981-981: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


981-981: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


984-984: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


985-985: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


985-985: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


988-988: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


994-994: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1008-1008: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1017-1017: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1018-1018: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1018-1018: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1023-1023: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1024-1024: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1024-1024: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1029-1029: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1032-1032: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1037-1037: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1038-1038: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1038-1038: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1044-1044: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1047-1047: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1054-1054: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1057-1057: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1060-1060: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1098-1098: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1113-1113: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1114-1114: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1114-1114: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1121-1121: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1122-1122: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1122-1122: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1126-1126: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1132-1132: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1137-1137: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1138-1138: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1138-1138: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1143-1143: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


140-140: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


145-145: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


313-313: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


565-565: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


567-567: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


836-836: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


996-996: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1001-1001: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1003-1003: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1010-1010: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1014-1014: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1065-1065: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1068-1068: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1070-1070: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1078-1078: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1080-1080: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1083-1083: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1086-1086: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1088-1088: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1090-1090: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1092-1092: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


22-22: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


27-27: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


34-34: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


39-39: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


45-45: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


49-49: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


56-56: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


60-60: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


63-63: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


66-66: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


69-69: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


76-76: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


81-81: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


84-84: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


89-89: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


94-94: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


98-98: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


101-101: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


105-105: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


110-110: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


115-115: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


119-119: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


124-124: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


135-135: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


150-150: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


154-154: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


158-158: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


161-161: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


167-167: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


171-171: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


176-176: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


181-181: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


186-186: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


191-191: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


199-199: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


206-206: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


211-211: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


214-214: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


218-218: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


222-222: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


230-230: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


234-234: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


240-240: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


257-257: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


292-292: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


300-300: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


304-304: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


307-307: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


312-312: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


326-326: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


330-330: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


334-334: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


338-338: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


343-343: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


350-350: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


356-356: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


364-364: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


368-368: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


370-370: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


372-372: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


376-376: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


380-380: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


384-384: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


389-389: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


393-393: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


397-397: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


401-401: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


406-406: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


415-415: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


420-420: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


425-425: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


428-428: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


433-433: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


438-438: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


447-447: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


457-457: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


465-465: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


469-469: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


473-473: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


477-477: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


481-481: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


486-486: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


490-490: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


498-498: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


498-498: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


500-500: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


506-506: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


510-510: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


515-515: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


526-526: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


530-530: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


536-536: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


545-545: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


549-549: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


560-560: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


563-563: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


573-573: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


597-597: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


607-607: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


611-611: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


614-614: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


618-618: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


623-623: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


626-626: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


631-631: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


636-636: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


639-639: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


645-645: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


650-650: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


653-653: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


656-656: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


661-661: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


665-665: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


669-669: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


673-673: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


681-681: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


694-694: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


697-697: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


702-702: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


706-706: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


712-712: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


715-715: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


719-719: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


727-727: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


730-730: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


733-733: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


737-737: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


741-741: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


745-745: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


750-750: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


756-756: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


760-760: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


769-769: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


775-775: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


779-779: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


783-783: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


788-788: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


794-794: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


800-800: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


804-804: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


808-808: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


812-812: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


816-816: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


820-820: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


848-848: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


852-852: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


858-858: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


864-864: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


871-871: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


875-875: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


882-882: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


885-885: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


890-890: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


905-905: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


908-908: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


911-911: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


916-916: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


921-921: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


926-926: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


931-931: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


945-945: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


948-948: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


953-953: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


959-959: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


963-963: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


967-967: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


972-972: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


978-978: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


982-982: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


986-986: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


989-989: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


995-995: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1009-1009: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1009-1009: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1015-1015: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1019-1019: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1025-1025: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1030-1030: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1033-1033: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1039-1039: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1045-1045: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1048-1048: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1055-1055: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1058-1058: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1061-1061: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1064-1064: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1085-1085: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1085-1085: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1093-1093: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1115-1115: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1123-1123: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1127-1127: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1133-1133: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1139-1139: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1144-1144: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


8-8: null
Bare URL used

(MD034, no-bare-urls)


433-433: null
Bare URL used

(MD034, no-bare-urls)


573-573: null
Bare URL used

(MD034, no-bare-urls)


653-653: null
Bare URL used

(MD034, no-bare-urls)


1095-1095: null
Bare URL used

(MD034, no-bare-urls)


603-603: null
Emphasis used instead of a heading

(MD036, no-emphasis-as-heading)


531-531: null
Spaces inside link text

(MD039, no-space-in-links)


537-537: null
Spaces inside link text

(MD039, no-space-in-links)


626-626: null
Spaces inside link text

(MD039, no-space-in-links)


783-783: null
Spaces inside link text

(MD039, no-space-in-links)


794-794: null
Spaces inside link text

(MD039, no-space-in-links)


140-140: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


565-565: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


592-592: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


683-683: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


689-689: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1065-1065: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1070-1070: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1080-1080: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1086-1086: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1090-1090: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


541-541: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


541-541: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


603-603: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


603-603: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


733-733: Expected: asterisk; Actual: underscore
Strong style

(MD050, strong-style)


733-733: Expected: asterisk; Actual: underscore
Strong style

(MD050, strong-style)

CHANGELOG.md Outdated Show resolved Hide resolved
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 8bbc55d and 0d0f63e.

Files ignored due to path filters (1)
  • Gemfile.lock is excluded by !**/*.lock
Files selected for processing (1)
  • Gemfile.development_dependencies (1 hunks)
Files skipped from review due to trivial changes (1)
  • Gemfile.development_dependencies

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 0d0f63e and 9d5e8c2.

Files selected for processing (1)
  • rakelib/webpacker_examples.rake (1 hunks)
Additional comments not posted (1)
rakelib/webpacker_examples.rake (1)

40-40: LGTM!

@vaukalak vaukalak changed the title [WIP] Use package json Use package_json gem Jun 30, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 9d5e8c2 and fa70185.

Files selected for processing (2)
  • CHANGELOG.md (1 hunks)
  • rakelib/webpacker_examples.rake (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • rakelib/webpacker_examples.rake
Additional context used
Markdownlint
CHANGELOG.md

306-306: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


437-437: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


535-535: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


544-544: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


548-548: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


559-559: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


572-572: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


578-578: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


583-583: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


606-606: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


610-610: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


617-617: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


622-622: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


630-630: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


635-635: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


644-644: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


649-649: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


660-660: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


664-664: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


672-672: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


680-680: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


701-701: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


705-705: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


711-711: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


718-718: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


726-726: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


736-736: Expected: h3; Actual: h4
Heading levels should only increment by one level at a time

(MD001, heading-increment)


740-740: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


744-744: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


749-749: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


755-755: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


759-759: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


774-774: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


778-778: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


782-782: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


787-787: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


799-799: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


803-803: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


807-807: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


811-811: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


815-815: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


819-819: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


870-870: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


881-881: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


888-888: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


904-904: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


915-915: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


920-920: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


925-925: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


930-930: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


958-958: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


962-962: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


966-966: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


971-971: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


977-977: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


981-981: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


985-985: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1018-1018: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1024-1024: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1029-1029: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1038-1038: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1098-1098: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1114-1114: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1122-1122: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


1138-1138: Expected: h3; Actual: h5
Heading levels should only increment by one level at a time

(MD001, heading-increment)


257-257: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


258-258: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


259-259: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


260-260: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


261-261: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


264-264: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


266-266: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


267-267: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


269-269: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


280-280: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


369-369: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


370-370: Expected: dash; Actual: asterisk
Unordered list style

(MD004, ul-style)


536-536: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


537-537: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


538-538: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


539-539: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


945-945: Expected: 0; Actual: 1
Unordered list indentation

(MD007, ul-indent)


2-2: Expected: 0 or 2; Actual: 1
Trailing spaces

(MD009, no-trailing-spaces)


8-8: Expected: 0 or 2; Actual: 1
Trailing spaces

(MD009, no-trailing-spaces)


99-99: Expected: 0 or 2; Actual: 1
Trailing spaces

(MD009, no-trailing-spaces)


113-113: Expected: 0 or 2; Actual: 43
Trailing spaces

(MD009, no-trailing-spaces)


939-939: Column: 2
Hard tabs

(MD010, no-hard-tabs)


959-959: Column: 2
Hard tabs

(MD010, no-hard-tabs)


963-963: Column: 2
Hard tabs

(MD010, no-hard-tabs)


968-968: Column: 2
Hard tabs

(MD010, no-hard-tabs)


73-73: Expected: 1; Actual: 2
Multiple consecutive blank lines

(MD012, no-multiple-blanks)


520-520: Expected: 1; Actual: 2
Multiple consecutive blank lines

(MD012, no-multiple-blanks)


1-1: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


14-14: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


17-17: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


18-18: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


18-18: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


21-21: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


26-26: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


33-33: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


38-38: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


41-41: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


44-44: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


48-48: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


55-55: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


58-58: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


59-59: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


59-59: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


62-62: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


65-65: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


68-68: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


74-74: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


75-75: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


75-75: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


80-80: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


83-83: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


88-88: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


93-93: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


96-96: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


97-97: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


97-97: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


100-100: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


103-103: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


104-104: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


104-104: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


109-109: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


114-114: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


118-118: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


123-123: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


134-134: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


148-148: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


149-149: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


149-149: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


152-152: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


153-153: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


153-153: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


156-156: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


157-157: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


157-157: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


160-160: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


166-166: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


169-169: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


170-170: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


170-170: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


175-175: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


180-180: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


185-185: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


189-189: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


190-190: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


190-190: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


197-197: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


198-198: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


198-198: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


204-204: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


205-205: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


205-205: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


209-209: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


210-210: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


210-210: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


213-213: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


216-216: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


217-217: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


217-217: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


220-220: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


221-221: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


221-221: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


228-228: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


229-229: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


229-229: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


232-232: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


233-233: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


233-233: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


236-236: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


239-239: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


245-245: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


256-256: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


290-290: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


291-291: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


291-291: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


298-298: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


299-299: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


299-299: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


302-302: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


303-303: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


303-303: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


306-306: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


311-311: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


320-320: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


325-325: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


328-328: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


329-329: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


329-329: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


332-332: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


333-333: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


333-333: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


336-336: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


337-337: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


337-337: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


342-342: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


349-349: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


355-355: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


362-362: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


363-363: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


363-363: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


366-366: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


367-367: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


367-367: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


371-371: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


371-371: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


374-374: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


375-375: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


375-375: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


379-379: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


382-382: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


383-383: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


383-383: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


388-388: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


391-391: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


392-392: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


392-392: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


395-395: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


396-396: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


396-396: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


399-399: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


400-400: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


400-400: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


405-405: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


414-414: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


419-419: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


424-424: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


427-427: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


432-432: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


437-437: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


446-446: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


456-456: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


463-463: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


464-464: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


464-464: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


467-467: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


468-468: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


468-468: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


471-471: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


472-472: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


472-472: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


475-475: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


476-476: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


476-476: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


480-480: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


484-484: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


485-485: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


485-485: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


488-488: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


489-489: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


489-489: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


496-496: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


497-497: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


497-497: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


499-499: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


499-499: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


504-504: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


505-505: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


505-505: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


508-508: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


509-509: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


509-509: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


514-514: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


517-517: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


521-521: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


524-524: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


525-525: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


525-525: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


528-528: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


529-529: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


529-529: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


534-534: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


535-535: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


535-535: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


543-543: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


544-544: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


544-544: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


547-547: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


548-548: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


548-548: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


558-558: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


559-559: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


559-559: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


562-562: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


571-571: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


572-572: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


572-572: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


578-578: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


583-583: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


586-586: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


596-596: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


599-599: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


602-602: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


605-605: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


606-606: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


606-606: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


609-609: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


610-610: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


610-610: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


613-613: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


616-616: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


617-617: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


617-617: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


622-622: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


625-625: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


630-630: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


635-635: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


638-638: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


644-644: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


649-649: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


652-652: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


655-655: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


659-659: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


660-660: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


660-660: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


663-663: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


664-664: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


664-664: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


667-667: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


668-668: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


668-668: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


671-671: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


672-672: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


672-672: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


675-675: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


680-680: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


693-693: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


696-696: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


700-700: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


701-701: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


701-701: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


704-704: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


705-705: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


705-705: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


710-710: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


711-711: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


711-711: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


714-714: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


717-717: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


718-718: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


718-718: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


721-721: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


726-726: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


729-729: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


732-732: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


735-735: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


736-736: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


736-736: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


739-739: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


740-740: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


740-740: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


743-743: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


744-744: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


744-744: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


748-748: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


749-749: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


749-749: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


754-754: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


755-755: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


755-755: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


758-758: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


759-759: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


759-759: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


768-768: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


773-773: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


774-774: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


774-774: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


777-777: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


778-778: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


778-778: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


781-781: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


782-782: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


782-782: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


787-787: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


793-793: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


798-798: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


799-799: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


799-799: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


802-802: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


803-803: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


803-803: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


806-806: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


807-807: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


807-807: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


810-810: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


811-811: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


811-811: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


814-814: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


815-815: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


815-815: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


818-818: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


819-819: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


819-819: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


847-847: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


851-851: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


857-857: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


863-863: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


869-869: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


870-870: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


870-870: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


874-874: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


880-880: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


881-881: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


881-881: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


884-884: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


887-887: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


888-888: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


888-888: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


904-904: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


907-907: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


910-910: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


915-915: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


920-920: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


925-925: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


930-930: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


944-944: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


947-947: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


952-952: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


957-957: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


958-958: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


958-958: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


961-961: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


962-962: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


962-962: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


965-965: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


966-966: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


966-966: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


970-970: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


971-971: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


971-971: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


976-976: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


977-977: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


977-977: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


980-980: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


981-981: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


981-981: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


984-984: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


985-985: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


985-985: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


988-988: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


994-994: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1008-1008: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1017-1017: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1018-1018: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1018-1018: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1023-1023: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1024-1024: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1024-1024: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1029-1029: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1032-1032: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1037-1037: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1038-1038: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1038-1038: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1044-1044: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1047-1047: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1054-1054: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1057-1057: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1060-1060: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1098-1098: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1113-1113: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1114-1114: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1114-1114: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1121-1121: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1122-1122: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1122-1122: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1126-1126: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1132-1132: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1137-1137: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1138-1138: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1138-1138: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


1143-1143: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


140-140: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


145-145: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


313-313: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


565-565: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


567-567: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


836-836: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


996-996: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1001-1001: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1003-1003: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1010-1010: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1014-1014: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1065-1065: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1068-1068: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1070-1070: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1078-1078: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1080-1080: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1083-1083: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1086-1086: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1088-1088: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1090-1090: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


1092-1092: null
Fenced code blocks should be surrounded by blank lines

(MD031, blanks-around-fences)


22-22: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


27-27: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


34-34: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


39-39: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


45-45: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


49-49: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


56-56: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


60-60: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


63-63: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


66-66: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


69-69: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


76-76: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


81-81: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


84-84: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


89-89: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


94-94: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


98-98: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


101-101: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


105-105: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


110-110: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


115-115: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


119-119: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


124-124: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


135-135: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


150-150: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


154-154: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


158-158: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


161-161: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


167-167: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


171-171: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


176-176: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


181-181: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


186-186: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


191-191: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


199-199: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


206-206: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


211-211: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


214-214: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


218-218: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


222-222: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


230-230: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


234-234: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


240-240: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


257-257: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


292-292: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


300-300: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


304-304: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


307-307: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


312-312: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


326-326: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


330-330: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


334-334: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


338-338: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


343-343: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


350-350: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


356-356: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


364-364: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


368-368: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


370-370: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


372-372: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


376-376: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


380-380: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


384-384: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


389-389: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


393-393: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


397-397: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


401-401: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


406-406: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


415-415: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


420-420: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


425-425: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


428-428: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


433-433: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


438-438: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


447-447: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


457-457: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


465-465: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


469-469: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


473-473: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


477-477: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


481-481: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


486-486: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


490-490: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


498-498: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


498-498: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


500-500: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


506-506: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


510-510: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


515-515: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


526-526: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


530-530: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


536-536: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


545-545: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


549-549: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


560-560: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


563-563: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


573-573: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


597-597: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


607-607: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


611-611: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


614-614: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


618-618: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


623-623: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


626-626: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


631-631: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


636-636: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


639-639: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


645-645: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


650-650: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


653-653: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


656-656: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


661-661: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


665-665: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


669-669: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


673-673: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


681-681: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


694-694: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


697-697: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


702-702: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


706-706: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


712-712: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


715-715: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


719-719: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


727-727: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


730-730: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


733-733: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


737-737: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


741-741: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


745-745: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


750-750: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


756-756: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


760-760: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


769-769: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


775-775: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


779-779: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


783-783: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


788-788: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


794-794: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


800-800: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


804-804: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


808-808: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


812-812: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


816-816: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


820-820: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


848-848: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


852-852: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


858-858: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


864-864: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


871-871: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


875-875: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


882-882: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


885-885: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


890-890: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


905-905: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


908-908: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


911-911: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


916-916: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


921-921: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


926-926: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


931-931: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


945-945: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


948-948: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


953-953: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


959-959: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


963-963: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


967-967: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


972-972: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


978-978: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


982-982: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


986-986: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


989-989: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


995-995: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1009-1009: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1009-1009: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1015-1015: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1019-1019: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1025-1025: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1030-1030: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1033-1033: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1039-1039: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1045-1045: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1048-1048: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1055-1055: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1058-1058: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1061-1061: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1064-1064: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1085-1085: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1085-1085: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1093-1093: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1115-1115: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1123-1123: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1127-1127: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1133-1133: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1139-1139: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


1144-1144: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


8-8: null
Bare URL used

(MD034, no-bare-urls)


433-433: null
Bare URL used

(MD034, no-bare-urls)


573-573: null
Bare URL used

(MD034, no-bare-urls)


653-653: null
Bare URL used

(MD034, no-bare-urls)


1095-1095: null
Bare URL used

(MD034, no-bare-urls)


603-603: null
Emphasis used instead of a heading

(MD036, no-emphasis-as-heading)


531-531: null
Spaces inside link text

(MD039, no-space-in-links)


537-537: null
Spaces inside link text

(MD039, no-space-in-links)


626-626: null
Spaces inside link text

(MD039, no-space-in-links)


783-783: null
Spaces inside link text

(MD039, no-space-in-links)


794-794: null
Spaces inside link text

(MD039, no-space-in-links)


140-140: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


565-565: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


592-592: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


683-683: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


689-689: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1065-1065: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1070-1070: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1080-1080: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1086-1086: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


1090-1090: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


541-541: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


541-541: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


603-603: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


603-603: Expected: underscore; Actual: asterisk
Emphasis style

(MD049, emphasis-style)


733-733: Expected: asterisk; Actual: underscore
Strong style

(MD050, strong-style)


733-733: Expected: asterisk; Actual: underscore
Strong style

(MD050, strong-style)

Additional comments not posted (1)
CHANGELOG.md (1)

22-22: Avoid bare URLs.

Use proper markdown links instead of bare URLs to improve readability.

- - Improved dependency management by integrating package_json. [PR 1639](https://github.com/shakacode/react_on_rails/pull/1639) by [vaukalak](https://github.com/vaukalak).
+ - Improved dependency management by integrating package_json. [PR 1639](https://github.com/shakacode/react_on_rails/pull/1639) by [vaukalak](https://github.com/vaukalak).

Likely invalid or redundant comment.

Tools
Markdownlint

22-22: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)

CHANGELOG.md Show resolved Hide resolved
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between fa70185 and d9a2666.

Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
Additional context used
Markdownlint
CHANGELOG.md

21-21: Expected: 1; Actual: 2
Multiple consecutive blank lines

(MD012, no-multiple-blanks)


28-28: Expected: 1; Actual: 2
Multiple consecutive blank lines

(MD012, no-multiple-blanks)


18-18: Expected: 1; Actual: 0; Above
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


18-18: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


22-22: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


25-25: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


31-31: Expected: 1; Actual: 0; Below
Headings should be surrounded by blank lines

(MD022, blanks-around-headings)


23-23: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)


26-26: null
Lists should be surrounded by blank lines

(MD032, blanks-around-lists)

CHANGELOG.md Show resolved Hide resolved
CHANGELOG.md Show resolved Hide resolved
CHANGELOG.md Show resolved Hide resolved
@justin808 justin808 merged commit b966229 into master Jul 3, 2024
11 checks passed
@justin808 justin808 deleted the use-package_json branch July 3, 2024 06:56
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.

Utilize shakacode/package_json for Enhanced Package Management Compatibility
3 participants