-
It would allow to load data from any spreadsheet document.
This is a demo with Lume in the website: https://docs.sheetjs.com/docs/demos/content/#lume-demo
-
貼吧活動:(請查閱 [SARS-CoV-2 Timeline by 2020.02.21](https://github.com/agorahub/_meta/blob/agoran/theagora/sari/Memorandum_2020-02-21_SARS-CoV-2-Timeline_Nathan.pdf?raw=true), by Nathan :cloud: )
- Colla…
-
Pagefind is a fully static search library that aims to perform well on large sites, while using as little of your users’ bandwidth as possible, and without hosting any infrastructure.
https://pagef…
-
It's really great to have a web framework that's simple & fast.
I think we can push "fast" forward by implementing more Middlewares like Etag, Logging, Jwt Auth, GraphQL & more... with more configura…
-
## Description
Since I'm currently using the JSX plugin in combination with TypeScript for creating my blog, after talking to @oscarotero we came up with the idea of extending the `Data` interface …
-
Since `` is not valid JSX, but [must be included](https://html.com/tags/doctype/) in `.html` documents for best practices, I suggest adding a feature to automatically add ``, to the JSX plugins. [Some…
-
Hi, I was trying to add options to a markdown-it plugin like `markdown-it-toc-done-right`, where [the plugin docs](https://www.npmjs.com/package/markdown-it-toc-done-right#options) suggest passing opt…
-
My redirects are to url with accents and when I export to apache .htaccess format, they look like this:
```
RewriteRule ^Materias/Post/57173$ https://www.saraivaconteudo.com.br/blog/materias/d…
-
Hi, I have the following task in `deno.json`:
```json
{
"tasks": {
"build": "deno run -A https://deno.land/x/lume@v1.8.0/ci.ts"
}
}
```
So I can run `deno task build` to build a we…
-
### Describe the bug
```js
import { createSignal, batch } from "solid-js";
const [count, setCount] = createSignal(0);
batch(() => {
console.log('set:', setCount(123));
console.log('get:'…