NullVoxPopuli

Results 1113 issues of NullVoxPopuli

I'm noticing that with enough documentation, initial build can be > 3 minutes, and rebuilds > 20s. What if, during development (or maybe always?), we ship the compiler, and dynamically...

I'm wanting to generate components from all the markdown files, and I see that this is handled via plugin + service + docfy-output component. If I can omit the extract-demo-to-component...

As a design system grows, it'd be great to offload most of the content to be on-demand. So, maybe: - all the pages are pre-rendered - but when doing in-app...

Reproduction here: https://github.com/NullVoxPopuli/ember-cheat-sheet Just uncomment this: https://github.com/NullVoxPopuli/ember-cheat-sheet/blob/main/ember-cli-build.js#L23 and run `ember s` You'll notice that the app's content is now totally gone.

Using embroider, saving markdown files does not cause a detected change, and I need to restart the dev server to see my changes :-\

I'm working on making an Ember cheatsheet for folks learning ember, and I've written this "markdown" so far: ```md # {{t 'layout.application.title'}} {{t 'layout.application.description-1' htmlSafe=true}} {{t 'layout.application.description-2' htmlSafe=true}} ```bash #...

what does this mean for docfy and docfy config files?

Type: Internal

This request is partially for debugging/development purposes, partially for style isolation without a shadowdom (which removes _all_ styles of the parent context). For this change to be uniformly implemented, the...

Maybe this will provide better awareness to what add-ons are available? They'd need to be ranked somehow, showing deps, maybe filter out incompatible add-ons with the current config?

I tried using a named scope: In the same method, I have this: ``` Object.named_scope :public_and_my_private, :conditions => "user.id == #{current_user.id} or visibility == #{Shared::PUBLIC}" ``` and ``` @search =...