Repository: https://github.com/synchronic1/enhanced-harness-plugin
Package: @synchronic1/harness-ranger
Version: 0.1.0
License: MIT
Status: ✅ Production Ready
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% comment %} | |
| Firstly, we can't comment inside liquid tags, so this turned into a mess pretty quickly. | |
| In order to somewhat document this mess, I'll do my best without writing the comments inline :( | |
| This snippet takes in a string variable called "raw", parses it for markdown, and spits out the | |
| corresponding HTML representation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const feather = require('feather-icons/dist/icons.json') | |
| const pascal = require('just-pascal-case') | |
| const { promises: fs } = require('fs') | |
| const { join } = require('path') | |
| const iconList = require('./icon-list.json') | |
| const handleComponentName = name => name.replace(/\-(\d+)/, '$1') | |
| const component = icon => | |
| `<script> |
If you, like me, resent every dollar spent on commercial PDF tools,
you might want to know how to change the text content of a PDF without
having to pay for Adobe Acrobat or another PDF tool. I didn't see an
obvious open-source tool that lets you dig into PDF internals, but I
did discover a few useful facts about how PDFs are structured that
I think may prove useful to others (or myself) in the future. They
are recorded here. They are surely not universally applicable --
the PDF standard is truly Byzantine -- but they worked for my case.
It's 2024. You should use tsup instead of this.
🔥 Blazing fast builds
😇 CommonJS bundle
🌲 .mjs bundle
✨ .d.ts bundle + type-checking
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| product(first: 50) { | |
| edges { | |
| node { | |
| name | |
| description | |
| } | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @use 'sass:map'; | |
| @use 'variants' as * with ( | |
| $breakpoints: ( | |
| 'small': 640px, | |
| 'medium': 768px, | |
| 'large': 1024px, | |
| 'wide': 1280px, | |
| ) | |
| ); |
NewerOlder