Results 74 comments of Oleksii Shmalko
trafficstars

Oh, I see! so, the actual behavior is that verse blocks are first stripped of the common whitespace prefix, then newlines are converted to `` and *leading* whitspace is converted...

From `ox-html.el`: ```emacs-lisp ;;;; Verse Block (defun org-html-verse-block (_verse-block contents info) "Transcode a VERSE-BLOCK element from Org to HTML. CONTENTS is verse block contents. INFO is a plist holding contextual...

Hey. What kind of boilerplate do you mean? Uniorg has some examples for basic parsing and a Next.js-based blog.

It's hard to create a common plugin for Next.js because some aspects are still hacky or differ between setups (e.g., copying referenced images to output, or resolving cite links). I...

Hey, thanks for the pull request! I researched a little, and it would be great if we could comply with [Unist](https://github.com/syntax-tree/unist#node)—all `Node` have `position` field that has `start` and `end`...

Try running `npm run bootstrap && npm run build` first

You can use the following hook to reduce boilerplate ```typescript const useRefCallback = ( value: ((...args: T) => void) | undefined, deps?: React.DependencyList ): ((...args: T) => void) => {...

I was able to reproduce it on atomicdata.dev: 1. Create class (e.g., https://atomicdata.dev/classes/test-class) 2. Edit description after creation 3. Sort classes by description: https://atomicdata.dev/classes?sort_by=https%3A%2F%2Fatomicdata.dev%2Fproperties%2Fdescription 4. Notice test class is duplicated...

@joepio this issue seems to be accidentally closed by 1c25aed

As another option: ## Decouple indices from queries Allow user to create indices independent of queries. (Perhaps via a new `Index` class.) Then we need a “query planner” to select...