Markdown Linter - Online Check Syntax & Style
Paste Markdown and get warnings for common mistakes: inconsistent heading spacing, bare URLs, and broken links. All local.
UD5 Toolkit
Explore CSS rendering hints — image-rendering, text-rendering, shape-rendering & color-rendering.
See how browsers interpret content-type rendering intents in real time.
A 160×120 test pattern displayed at 4× scale. Toggle rendering modes to see the difference.
Compare how different text-rendering values affect typography, especially at smaller sizes.
optimizeLegibility enables ligatures & kerning.
optimizeSpeed disables them for faster rendering.
geometricPrecision prioritizes exact glyph outlines.
Differences are most visible at small font sizes and on low-DPI screens.
SVG-specific rendering hints that affect shape edges and color interpolation.
Observe edge crispness of shapes & gradient color transitions
image-rendering in CSS?
image-rendering is a CSS property that provides a hint to the browser about how to scale images and other rendered content. It controls the interpolation algorithm used when an element's rendered size differs from its intrinsic size. Common values include auto (browser default, usually smooth bilinear interpolation), pixelated (nearest-neighbor when scaling up, ideal for pixel art), crisp-edges (preserves hard edges without smoothing), and smooth / high-quality (forces high-quality interpolation). This property is essential for games, pixel art, QR codes, and any scenario where precise pixel control matters.
image-rendering: pixelated?
Use image-rendering: pixelated when you want to preserve the crisp, blocky appearance of pixel art or low-resolution graphics when they are scaled up. Common use cases include: pixel art games displayed at larger sizes, retro-style graphics, QR codes (to ensure clean edges for scanning), favicon displays, and sprite-based animations. This setting forces nearest-neighbor interpolation during upscaling, so each logical pixel maps to a clean square block of physical pixels instead of being smoothed out.
crisp-edges and pixelated?
While both preserve sharp edges, they work differently: crisp-edges tells the browser to use an algorithm that preserves contrast and edges — it may use nearest-neighbor or a variant that keeps edges sharp but may introduce minimal smoothing in some implementations. pixelated specifically mandates nearest-neighbor interpolation when scaling up, guaranteeing perfectly blocky pixels. In practice, pixelated is more predictable for pixel art upscaling, while crisp-edges is often better for downscaling or when you want sharp edges without necessarily wanting visible pixel blocks. Browser support for both is excellent in modern browsers.
text-rendering do?
text-rendering is a CSS/SVG property that provides hints to the text rendering engine about trade-offs between speed, legibility, and geometric precision. optimizeSpeed disables kerning and ligatures for faster rendering. optimizeLegibility enables kerning, ligatures, and optional typographic features for better readability (but may be slower). geometricPrecision prioritizes exact glyph outlines over snapping to pixel grids, useful for SVG text that will be scaled or transformed. auto lets the browser decide based on context. Note: on mobile Safari (iOS), optimizeLegibility can sometimes cause performance issues with large text blocks.
shape-rendering and color-rendering in SVG?
These are SVG presentation attributes that hint how the renderer should handle shapes and colors. shape-rendering affects anti-aliasing of vector shapes: crispEdges turns off anti-aliasing for hard pixel-aligned edges (great for UI elements and barcodes), geometricPrecision ensures smooth curves at the cost of speed, and optimizeSpeed may reduce anti-aliasing quality. color-rendering affects color interpolation in gradients: optimizeQuality may use linear RGB color space for more accurate gradient transitions, while optimizeSpeed may use simpler sRGB interpolation. These hints are particularly useful for data visualizations, icons, and print-ready SVGs.
In color management (ICC profiles), rendering intent defines how colors are converted between different color spaces. The four standard intents are: Perceptual (compresses the full gamut to fit the destination, preserving relationships between colors — best for photos), Relative Colorimetric (maps white point and clips out-of-gamut colors — good for logos and spot colors), Saturation (prioritizes vivid colors over accuracy — useful for charts and presentations), and Absolute Colorimetric (preserves exact color values including white point — used for proofing). While CSS itself doesn't have a widely-supported rendering-intent property, SVG and print CSS (via @page) can reference these intents in certain contexts.
content-visibility relate to rendering hints?
content-visibility: auto is a powerful CSS rendering hint that tells the browser to skip rendering work for off-screen or hidden content until it's needed. This property dramatically improves page performance by deferring layout, paint, and compositing for elements outside the viewport. While different from image-rendering or text-rendering, it falls under the same umbrella of "rendering intent hints" — CSS properties that guide the browser's rendering pipeline. Use content-visibility: auto for long pages with many sections, infinite scroll, or large DOM trees. Combine with contain-intrinsic-size to reserve space and prevent layout shifts.
Yes, rendering hints can significantly impact performance. text-rendering: optimizeLegibility enables expensive typographic features (ligatures, kerning) that increase text layout time — fine for headings but can cause jank on long pages with dynamic text on mobile. image-rendering: smooth or high-quality uses more CPU/GPU for interpolation. shape-rendering: geometricPrecision disables optimizations that snap to pixel grids. On the positive side, content-visibility: auto and will-change can dramatically improve performance by giving the browser advance notice. Always profile your specific use case, especially on low-power mobile devices.
image-rendering: pixelated?
image-rendering: pixelated is supported in all modern browsers: Chrome 41+, Firefox 45+, Safari 10+, Edge 79+, and Opera 28+. For older browsers, you can use the vendor-prefixed -ms-interpolation-mode: nearest-neighbor (IE/old Edge) or the older image-rendering: -moz-crisp-edges (old Firefox). The crisp-edges value has even broader legacy support. For a robust fallback, use: image-rendering: -moz-crisp-edges; image-rendering: pixelated; which covers virtually all browsers released after 2015.
<canvas> elements?
Absolutely! Canvas elements respond to image-rendering when their CSS display size differs from their internal pixel dimensions (set via width and height attributes). This is exactly what this demo shows — a small 160×120 canvas scaled up via CSS, where image-rendering controls the interpolation. This technique is widely used for: retro game emulators in the browser, pixel art editors, QR code generators, and any canvas application where you want crisp upscaling. You can also use imageSmoothingEnabled = false on the Canvas 2D context for nearest-neighbor rendering within the canvas itself.
Paste Markdown and get warnings for common mistakes: inconsistent heading spacing, bare URLs, and broken links. All local.
A visual guide to common copy‑editing and proofreading symbols. Click a mark to see its meaning. For writers.
Paste Markdown and convert all links from absolute to relative (or vice‑versa) based on a base domain. Bulk edit.
Paste text with highlights (e.g., from Apple Books) and extract only the highlighted lines. Save as list.
Check a live URL to extract and validate its canonical link element. Ensure correct SEO configuration. Runs from your browser.
Convert Markdown to styled HTML that retains formatting when pasted into Google Docs or Word. Headings, bold, lists. Client‑side.
Turn any sentence into mocking SpongeBob‑style text. Choose intensity. Copy and paste into chats. Pure client.
Shows a counter of how many seconds you have been idle. Tracks mouse and keyboard activity without recording.
Paste HTML or URL to extract canonical link tag. Verify self-referencing. Simple SEO audit step. Local only.
Convert messy URLs into clean, keyword-rich slugs. Remove stop words, replace spaces with hyphens. Lowercase transformation. All local.
Pick a contact from the device’s address book (mobile). Read name, email, and phone. All permission‑based. Privacy safe.
Enter a city name or coordinates and see today's sunrise, sunset, and twilight times. Approximate algorithm. Local.
Query the permission state of camera, microphone, geolocation, and more. See the response and learn the API.
Take a lighthearted inventory of your character strengths (not official VIA). Self-reflection tool. All in browser.
Fill in a form and see the FormData object as JSON. Perfect for debugging multipart form submissions. Client-side.
See the healthy weight range for your height using standard BMI chart. Gender‑specific data. Quick reference.
Create complex linear gradients with any number of color stops, exact angles, and length units. Live preview and CSS code.
Style underlines, overlines, and strike-throughs with colors, wavy styles, and thickness. Modern CSS text‑decoration.
Design a fully styled scrollbar with colors, width, radius, and hover effects. Supports both ::-webkit‑scrollbar and Firefox scrollbar‑width.
Create CSS clamp() values for fluid typography. Enter min and max font sizes and viewport widths. Modern responsive design.
Create CSS mask‑image effects with custom shapes, gradients, and SVGs. Visually see the mask applied to an image. Copy the CSS.
Paste your CSS and sort the properties of each rule alphabetically or by concentric groups. Keep your stylesheets consistent without a build step.
Create a customizable checkerboard or grid background using pure CSS gradients. Adjust cell size and colors. Copy the code.
Upload two images and apply CSS blend modes (multiply, screen, overlay, etc.). See the result and copy the filter CSS. Pure frontend.
Add print styles like removing backgrounds, adding page breaks, setting margins. See print preview instantly.
Write a media query and instantly see if it matches your current viewport. Width, height, orientation, and more.
Paste your CSS and strip all `!important` declarations in one click. See a list of affected rules. Local tool.
Paste HTML/CSS snippets or enter properties to test how z‑index and stacking contexts interact. Real‑time example.
Adjust margin, border, padding, and content sizes interactively and see the rendered box model. Get the exact CSS. Teach or learn layout.
Design a pure CSS tooltip with custom text, position (top/bottom/left/right), and arrow. Copy the clean code.