pixelpark / accessibility-linter

Assistant for writing inclusive code.
https://plugins.jetbrains.com/plugin/19498-accessibility-linter/
Apache License 2.0
3 stars 2 forks source link

Question: Support for Blazor/Razor Components? #6

Open periapsistech opened 1 year ago

periapsistech commented 1 year ago

Hello!

First off -- awesome solution, super excited to see it in action on HTML pages.

Would it be possible to support the .razor file extension? It's basically the same as HTML. Example:

@page "/MyPage"
<h3>@MyString </h3>
<div>Okay div</div>

@code {
   public string MyString { get; set; } = "Hello!";
}

I have submitted PR #7 to support this (maybe).

periapsistech commented 1 year ago

@ppfabian Are you able to do this? I see you are a maintainer.