{"id":4190,"date":"2026-08-24T20:56:00","date_gmt":"2026-08-24T20:56:00","guid":{"rendered":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/"},"modified":"2026-08-25T00:59:09","modified_gmt":"2026-08-25T00:59:09","slug":"your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good","status":"publish","type":"post","link":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/","title":{"rendered":"Your alt textual content passes automated checks. That does not imply it is any good."},"content":{"rendered":"<p><br \/>\n<\/p>\n<div id=\"\">\n<p class=\"wp-block-paragraph\">Multiple in 4 pictures on the internet\u2019s hottest house pages have alt textual content that\u2019s lacking, obscure, or copied from adjoining pictures.<\/p>\n<p class=\"wp-block-paragraph\">That\u2019s from WebAIM\u2019s 2026 WebAIM Million report, which discovered that alt textual content,an HTML attribute containing textual content describing the content material of a picture,  was lacking on 16.2% of pictures throughout the highest million house pages. Among the many pictures that did have alt textual content, one other 10.8% supplied an undescriptive attribute, comparable to alt=&#8221;picture&#8221;, a uncooked filename, or an outline duplicated from a neighbor.<\/p>\n<p class=\"wp-block-paragraph\">Whereas automated tooling reliably flags lacking alt textual content, it isn\u2019t nearly as good at fixing poorly written alt textual content. Most alt textual content checkers take a look at whether or not an accessible title for a picture exists, not whether or not the supplied alt textual content says something helpful in regards to the related picture, and that\u2019s a deliberate design selection: a quality-oriented rule with false positives is a rule groups swap off. So alt=&#8221;IMG_2847.png&#8221; passes. So does the identical alt=&#8221;3\/5 stars&#8221; on 5 totally different star-shaped icons.<\/p>\n<p class=\"wp-block-paragraph\">We constructed an alt textual content plugin for the GitHub Accessibility Scanner to assist enhance your alt textual content. This publish covers the place we drew the road between what a checker can show and what it may solely suspect, why our worst bug turned out to be a structure drawback relatively than a parsing one, and what modified as soon as we let a mannequin into the loop.<\/p>\n<p class=\"wp-block-paragraph\">Should you\u2019re constructing automated checks of your personal, for accessibility or in any other case, the tradeoffs ought to switch.<\/p>\n<h2 id=\"h-proving-a-string-is-wrong-without-seeing-the-picture\" class=\"wp-block-heading\">Proving a string is flawed with out seeing the image<\/h2>\n<p class=\"wp-block-paragraph\">Presence of alt textual content is an goal reality; the attribute is there or it isn\u2019t. High quality is commonly a judgment name. A machine can\u2019t show whether or not a sentence adequately describes an image in context from markup.<\/p>\n<p class=\"wp-block-paragraph\">Nevertheless, not all high quality is subjective. There\u2019s a number of checks you&#8217;ll be able to carry out primarily based on the alt textual content alone, without having to seek the advice of the picture content material:<\/p>\n<p>The attribute is absent (not empty) or whitespace-only.<\/p>\n<p>The alt is a filename, comparable to hero.png, IMG_2847.jpg.<\/p>\n<p>The alt is a placeholder any person meant to interchange, comparable to TODO, tbd.<\/p>\n<p>The alt is one generic phrase naming the medium as a substitute of the content material, comparable to picture, brand, chart.<\/p>\n<p>The identical alt repeats throughout adjoining pictures.<\/p>\n<p class=\"wp-block-paragraph\">Each a type of is a declare a few string, and that grew to become our dividing line. 5 deterministic guidelines run by default which want no credentials for working AI fashions or community calls. One opt-in rule calls a mannequin with supplied picture content material and surrounding context, for judgments an alt textual content string can\u2019t assist by itself.<\/p>\n<p class=\"wp-block-paragraph\">First, we needed to decide which pictures to guage on a scanned webpage. We use Playwright\u2019s role-based locator relatively than querySelectorAll(&#8216;img&#8217;), so something not included within the browser\u2019s accessibility tree drops out, together with something carrying alt=&#8221;&#8221;. That final exclusion issues most. An empty alt is the writer explicitly saying the picture is ornamental, and flagging it might punish precisely the habits you need to encourage.<\/p>\n<p class=\"wp-block-paragraph\">So, how strict ought to it&#8217;s? A high quality checker lives or dies on false positives, so we selected closed units over intelligent heuristics. The vague-alt rule normalizes a string, then checks it in opposition to a curated listing of phrases that carry no data on their very own. It fires solely on an actual match:<\/p>\n<p>alt=&#8221;picture&#8221; will get flagged.<\/p>\n<p>alt=&#8221;picture of the login display with the SSO button highlighted&#8221; doesn\u2019t.<\/p>\n<p class=\"wp-block-paragraph\">Guidelines this literal miss loads of unhealthy alt textual content. We took the miss over the false optimistic, as a result of a dependable checker that builders allow beats one which will get switched off.<\/p>\n<h2 class=\"wp-block-heading\" id=\"repetition-is-a-layout-problem-not-a-dom-problem\">Repetition is a structure drawback, not a DOM drawback<\/h2>\n<p class=\"wp-block-paragraph\">Repeated alt textual content offered an fascinating drawback. Image a row of 5 star-shaped icons that every say &#8220;3\/5 stars&#8221;. A display reader consumer hears the identical factor 5 occasions and learns nothing new from 4 of them.<\/p>\n<p class=\"wp-block-paragraph\">Our first model walked the photographs in doc order and flagged any run sharing the identical normalized alt. It caught issues it shouldn\u2019t have. For instance, a footer \u201cGitHub\u201d brand and a header \u201cGitHub\u201d brand may sit subsequent to one another within the extracted listing however nowhere close to one another on display, so no person experiences them as a gaggle.<\/p>\n<p class=\"wp-block-paragraph\">What issues is the place pictures land on display, not the place they sit within the markup. So the rule now checks web page structure, and solely extends a run when the hole between two bounding containers is small in comparison with the containers themselves:<\/p>\n<div class=\"wp-block-code-wrapper\">\nconst hole = Math.max(horizontalGap, verticalGap)<br \/>\nconst largerDim = Math.max(a.boundingBox.width, a.boundingBox.peak,<br \/>\n                           b.boundingBox.width, b.boundingBox.peak)<br \/>\nreturn hole &gt; GAP_MULTIPLIER * largerDim\n<\/div>\n<p class=\"wp-block-paragraph\">Two particulars value noting:<\/p>\n<p>The multiplier is a judgment name, not a quantity we derived from something. It\u2019s the sort of worth you tune in opposition to actual pages as a substitute of trusting from a spec.<\/p>\n<p>When both picture has no measurable field, the verify fails open and the run continues. A lacking discovering is invisible; a flawed one isn\u2019t.<\/p>\n<h2 class=\"wp-block-heading\" id=\"getting-a-model-to-act-like-a-reviewer-not-a-critic\">Getting a mannequin to behave like a reviewer, not a critic<\/h2>\n<p class=\"wp-block-paragraph\">Deterministic guidelines solely want the alt string. Something smarter must know what the web page is about, and none of that&#8217;s tracked by the picture ingredient. Whether or not alt=&#8221;a smiling particular person&#8221; is ok relies upon totally on what surrounds it: on a generic temper shot, it\u2019s in all probability works. However underneath a heading the place a selected particular person is known as, it doesn\u2019t present sufficient element.<\/p>\n<p class=\"wp-block-paragraph\">In our non-compulsory alt-text-qualitycheck, we extract web page context alongside every picture: the closest heading, the web page title, any<figcaption\/>, whether or not the picture sits inside a hyperlink or button, and as much as 600 characters of close by prose.<\/p>\n<p class=\"wp-block-paragraph\">The hyperlink sign issues most, as a result of when a picture is a hyperlink\u2019s solely content material, its alt turns into the hyperlink\u2019s accessible title. The correct alt then names the vacation spot as a substitute of describing the image.<\/p>\n<p class=\"wp-block-paragraph\">One warning: The plugin solely data that a picture sits inside a hyperlink. We don\u2019t verify whether or not it\u2019s the hyperlink\u2019s solely content material, which is the half that really turns alt right into a hyperlink title. So proper now each circumstances look similar to the mannequin.<\/p>\n<p class=\"wp-block-paragraph\">That context, the alt, and the picture go to a imaginative and prescient mannequin via GitHub Fashions. Our failure modes had been not often the mannequin misreading an image. They had been the mannequin having opinions. Given completely good alt textual content, our first model of the checker would counsel totally different alt textual content, as a result of \u201cmay this be higher?\u201d is a query a language mannequin all the time solutions sure to. Each picture turns into a discovering, so the sign disappears.<\/p>\n<p class=\"wp-block-paragraph\">Three modifications fastened it:<\/p>\n<p>A choice process as a substitute of an instruction. The immediate walks 4 ordered steps, stops on the first that matches, and emits that step\u2019s verdict: ornamental, redundant with a caption, purposeful, or informative.<\/p>\n<p>Specific anti-nitpick guidelines. Belief the writer\u2019s framing. Separate redundant prefixes (\u201cPicture of\u2026\u201d) from semantic ones (\u201c{Photograph} of\u2026\u201d). Deal with a brief alt as appropriate when the encircling prose already analyzes the picture.<\/p>\n<p>Structured output with a pressured subject order, so reasoning is generated earlier than verdict and the mannequin has to construct an argument earlier than it picks a label.<\/p>\n<p class=\"wp-block-paragraph\">None of that makes the mannequin unfailingly appropriate. It makes it constant sufficient to iterate in opposition to. The repository carries an offline grading harness constructed from revealed instructing materials: WebAIM, the W3C pictures tutorial, and POET. The rule and the harness share one immediate, so what you tune offline is what runs in CI. That harness solely assessments the mannequin\u2019s judgment, although, not the entire pipeline. A case can rating completely there and by no means attain the mannequin in an actual scan.<\/p>\n<h2 class=\"wp-block-heading\" id=\"sending-images-to-a-model-is-a-privacy-and-cost-decision\">Sending pictures to a mannequin is a privateness and value choice<\/h2>\n<p class=\"wp-block-paragraph\">The second a verify calls an exterior mannequin with webpage knowledge, it stops being only a lint rule and requires cautious knowledge circulation design. A number of issues observe from that:<\/p>\n<p>The rule is off by default. It gained\u2019t run until you intentionally allow it in your plugin configuration, and it wants a token with entry to GitHub Fashions.<\/p>\n<p>URLs get redacted. Picture URLs and hyperlink hrefs typically carry signed CDN tokens or session identifiers, so question and fragment are stripped from something getting into the mannequin context or the rule\u2019s error logs. For a similar cause, src and srcset are changed with (omitted) within the markup we ship.<\/p>\n<p>Every little thing in that context window is untrusted enter. Titles, headings, and prose all come from the web page being scanned, and a web page can comprise textual content written to steer a mannequin. Structured output constrains the form of a response, not the reasoning behind it.<\/p>\n<p class=\"wp-block-paragraph\">One warning, as a result of that listing is simple to over-read: findings nonetheless carry the actual web page URL and unique HTML into the scanner\u2019s regular reporting pipeline. That\u2019s on goal, since you&#8217;ll be able to\u2019t repair a picture you&#8217;ll be able to\u2019t find. Redaction narrows what reaches the mannequin and the logs, not what lands in your personal points. And in case you arrange Azure AI Imaginative and prescient credentials, an non-compulsory OCR pre-pass sends picture bytes to a second place. Nothing requires Azure, however a data-flow overview must cowl each paths.<\/p>\n<p class=\"wp-block-paragraph\">Value follows the identical form. Within the frequent case that is one mannequin name per picture per scan, which on an image-heavy web site dominates the price of the entire run. That\u2019s cause sufficient to place it on a schedule relatively than on each commit.<\/p>\n<h2 class=\"wp-block-heading\" id=\"what-this-still-cant-do\">What this nonetheless can\u2019t do<\/h2>\n<p>The deterministic guidelines are literal. They catch alt textual content that\u2019s clearly unwritten, not alt textual content that\u2019s fluent and flawed. Additionally they learn the alt attribute relatively than the computed accessible title, so an aria-label that fixes the issue gained\u2019t cease the discovering.<\/p>\n<p>The model-backed rule produces false positives. Each discovering is a immediate for human consideration, not a verdict.<\/p>\n<p>Silence isn\u2019t protection. That rule re-fetches pictures exterior the browser session, so something behind authentication can fail to load. Fetch and mannequin errors are logged and skipped, which implies a web page can come again clear as a result of nothing acquired checked.<\/p>\n<p>Instructed alt textual content is a draft. A mannequin that sees the picture and some close by phrases can\u2019t account on your viewers, your own home type, or the job that picture is doing on the entire web page.<\/p>\n<p>Some findings double up with the scanner\u2019s built-in checks, since our missing-alt rule covers the identical floor.<\/p>\n<p>We solely verify HTML <img\/> tags. SVG, position=&#8221;img&#8221; containers, CSS backgrounds, and canvas aren\u2019t lined but.<\/p>\n<p>That is new code with restricted real-world suggestions. Guidelines like these enhance after they meet the number of markup and content material discovered throughout actual websites. This plugin hasn\u2019t had that but, so deal with early findings accordingly.<\/p>\n<p>Passing isn\u2019t conformance. Automated checks are a ground. Testing with individuals who use assistive tech is the purpose.<\/p>\n<h2 class=\"wp-block-heading\" id=\"what-wed-tell-you-if-youre-building-something-similar\">What we\u2019d let you know in case you\u2019re constructing one thing comparable<\/h2>\n<p class=\"wp-block-paragraph\">Separate what you&#8217;ll be able to show from what you&#8217;ll be able to solely suspect, and provides them totally different defaults. Checks that show one thing must be low cost, predictable, and on by default. Checks that solely suspect one thing must be opt-in, and may learn as a suggestion relatively than a verdict. Then, ask what the consumer experiences relatively than what the DOM says. Each hole nonetheless open on this plugin has that second form. We report that a picture is inside a hyperlink, not that it&#8217;s the hyperlink. We learn an attribute, not a computed title.<\/p>\n<p class=\"wp-block-paragraph\">That distance is the actual boundary, and a greater mannequin doesn\u2019t shut it. Deciding what the performance of a picture is for a consumer who can\u2019t see it nonetheless requires human judgment. What automation buys you is ensuring that human is giving the correct pictures a second examination.<\/p>\n<p class=\"wp-block-paragraph\">Attempt the alt-text plugin in your accessibility scanning workflow. If it tells you the flawed factor, please report it. Open a difficulty with the discovering and, if public, a hyperlink to the affected web page.<\/p>\n<div class=\"mt-8 mb-8 mb-md-0\">\n<h2 class=\"h5-mktg\">\n\t\tWritten by\t<\/h2>\n<div class=\"author-bio__content\">\n<div class=\"author-bio__avatar\">\n<p>\t\t\t\t\t<img class=\"d-block circle\" src=\"https:\/\/avatars.githubusercontent.com\/u\/147209483?v=4&amp;s=200\" alt=\"Taarik Ashenafi\" width=\"80\" height=\"80\" loading=\"lazy\" decoding=\"async\"\/><\/p><\/div>\n<div class=\"author-bio__bio f4 lh-default\">\n<p>Taarik Ashenafi is a former software program engineering intern on the accessibility workforce at GitHub.<\/p>\n<\/p><\/div><\/div>\n<div class=\"author-bio__content\">\n<div class=\"author-bio__avatar\">\n<p>\t\t\t\t\t<img class=\"d-block circle\" src=\"https:\/\/avatars.githubusercontent.com\/u\/188632800?v=4&amp;s=200\" alt=\"Keenan Zhou\" width=\"80\" height=\"80\" loading=\"lazy\" decoding=\"async\"\/><\/p><\/div>\n<div class=\"author-bio__bio f4 lh-default\">\n<p>Keenan Zhou is a former software program engineering intern on the accessibility workforce at GitHub.<\/p>\n<\/p><\/div><\/div><\/div>\n<\/div>\n<p><br \/>\n<br \/><a href=\"https:\/\/github.blog\/engineering\/user-experience\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Multiple in 4 pictures on the internet\u2019s hottest house pages have alt textual content that\u2019s lacking, obscure, or copied from adjoining pictures. That\u2019s from WebAIM\u2019s 2026 WebAIM Million report, which discovered that alt textual content,an HTML attribute containing textual content describing the content material of a picture, was lacking on 16.2% of pictures throughout the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4192,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png","fifu_image_alt":"","jnews-multi-image_gallery":[],"jnews_single_post":[],"jnews_primary_category":[],"jnews_override_bookmark_settings":[],"jnews_social_meta":[],"jnews_override_counter":[],"footnotes":""},"categories":[5],"tags":[4428,468,3840,440,2986,2630,616],"class_list":["post-4190","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developer-ai-open-source-ecosystem","tag-alt","tag-automated","tag-checks","tag-doesnt","tag-good","tag-passes","tag-text"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Your alt textual content passes automated checks. That does not imply it is any good. - Future News 24<\/title>\n<meta name=\"description\" content=\"We built a plugin for the GitHub Accessibility Scanner to make sure your alt text is actually accessible. Here&#039;s how it works.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Your alt textual content passes automated checks. That does not imply it is any good. - Future News 24\" \/>\n<meta property=\"og:description\" content=\"We built a plugin for the GitHub Accessibility Scanner to make sure your alt text is actually accessible. Here&#039;s how it works.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/\" \/>\n<meta property=\"og:site_name\" content=\"Future News 24\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-24T20:56:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-25T00:59:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png\" \/>\n<meta name=\"author\" content=\"Future News 24\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Future News 24\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/\"},\"author\":{\"name\":\"Future News 24\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\"},\"headline\":\"Your alt textual content passes automated checks. That does not imply it is any good.\",\"datePublished\":\"2026-08-24T20:56:00+00:00\",\"dateModified\":\"2026-08-25T00:59:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/\"},\"wordCount\":2211,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/header-1.png\",\"keywords\":[\"alt\",\"Automated\",\"Checks\",\"doesnt\",\"good\",\"Passes\",\"Text\"],\"articleSection\":[\"Developer AI &amp; Open-Source Ecosystem\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/\",\"name\":\"Your alt textual content passes automated checks. That does not imply it is any good. - Future News 24\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/header-1.png\",\"datePublished\":\"2026-08-24T20:56:00+00:00\",\"dateModified\":\"2026-08-25T00:59:09+00:00\",\"description\":\"We built a plugin for the GitHub Accessibility Scanner to make sure your alt text is actually accessible. Here&#039;s how it works.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#primaryimage\",\"url\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/header-1.png\",\"contentUrl\":\"https:\\\/\\\/github.blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/header-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/24\\\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/futurenews24.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Your alt textual content passes automated checks. That does not imply it is any good.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"name\":\"Future News 24\",\"description\":\"The Smart Hub for AI and Next-Gen Innovation\",\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/futurenews24.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\",\"name\":\"Future News 24\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"contentUrl\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"width\":250,\"height\":250,\"caption\":\"Future News 24\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\",\"name\":\"Future News 24\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"caption\":\"Future News 24\"},\"sameAs\":[\"https:\\\/\\\/futurenews24.com\"],\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/author\\\/mridulpahuja20\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Your alt textual content passes automated checks. That does not imply it is any good. - Future News 24","description":"We built a plugin for the GitHub Accessibility Scanner to make sure your alt text is actually accessible. Here&#039;s how it works.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/","og_locale":"en_US","og_type":"article","og_title":"Your alt textual content passes automated checks. That does not imply it is any good. - Future News 24","og_description":"We built a plugin for the GitHub Accessibility Scanner to make sure your alt text is actually accessible. Here&#039;s how it works.","og_url":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/","og_site_name":"Future News 24","article_published_time":"2026-08-24T20:56:00+00:00","article_modified_time":"2026-08-25T00:59:09+00:00","og_image":[{"url":"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png","type":"","width":"","height":""}],"author":"Future News 24","twitter_card":"summary_large_image","twitter_image":"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png","twitter_misc":{"Written by":"Future News 24","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#article","isPartOf":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/"},"author":{"name":"Future News 24","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83"},"headline":"Your alt textual content passes automated checks. That does not imply it is any good.","datePublished":"2026-08-24T20:56:00+00:00","dateModified":"2026-08-25T00:59:09+00:00","mainEntityOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/"},"wordCount":2211,"commentCount":0,"publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#primaryimage"},"thumbnailUrl":"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png","keywords":["alt","Automated","Checks","doesnt","good","Passes","Text"],"articleSection":["Developer AI &amp; Open-Source Ecosystem"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/","url":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/","name":"Your alt textual content passes automated checks. That does not imply it is any good. - Future News 24","isPartOf":{"@id":"https:\/\/futurenews24.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#primaryimage"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#primaryimage"},"thumbnailUrl":"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png","datePublished":"2026-08-24T20:56:00+00:00","dateModified":"2026-08-25T00:59:09+00:00","description":"We built a plugin for the GitHub Accessibility Scanner to make sure your alt text is actually accessible. Here&#039;s how it works.","breadcrumb":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#primaryimage","url":"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png","contentUrl":"https:\/\/github.blog\/wp-content\/uploads\/2026\/08\/header-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/24\/your-alt-text-passes-automated-checks-that-doesnt-mean-its-any-good\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/futurenews24.com\/"},{"@type":"ListItem","position":2,"name":"Your alt textual content passes automated checks. That does not imply it is any good."}]},{"@type":"WebSite","@id":"https:\/\/futurenews24.com\/#website","url":"https:\/\/futurenews24.com\/","name":"Future News 24","description":"The Smart Hub for AI and Next-Gen Innovation","publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/futurenews24.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/futurenews24.com\/#organization","name":"Future News 24","url":"https:\/\/futurenews24.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/","url":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","contentUrl":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","width":250,"height":250,"caption":"Future News 24"},"image":{"@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83","name":"Future News 24","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","caption":"Future News 24"},"sameAs":["https:\/\/futurenews24.com"],"url":"https:\/\/futurenews24.com\/index.php\/author\/mridulpahuja20\/"}]}},"_links":{"self":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4190","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/comments?post=4190"}],"version-history":[{"count":1,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4190\/revisions"}],"predecessor-version":[{"id":4191,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4190\/revisions\/4191"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media\/4192"}],"wp:attachment":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media?parent=4190"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/categories?post=4190"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/tags?post=4190"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}