Marvin Ahlgrimm

Results 13 comments of Marvin Ahlgrimm

> i have found a way around that, you just write something in the note then save (Ctrl + s) after that go ahead and change the title. Can confirm,...

Thanks for the bug report. That shouldn't happen. I'll look into that issue.

For more info: What kind of response did you get? Can you show me the **Headers** section?

Ah got it. Then I would label it as Enhancement and not as Bug. I need to introduce the functionality, that a user can choose how to display to response.

A workaround I did was to intercept the form submit via event listener, query all tags from the taginput and then join their content to a comma-seperated list and resubmit...

Indeed `{{ text | default: "Default slot text" }}` seems to be sufficient for text slots. But what is the case for more complex HTML? Is there a mechansim? Happy...

You're right, a single `seeds.cr` would be sufficient. But my thought was that it could be beneficial to only seed/reset one application. For example I have a **blogging** and a...

To get further here: would it work for you if we first create a global `seed.cr` in the root project directory with the following content? ```crystal require "./src/project" Marten.setup #...

I think I was a little too quick in writing the issue. I'm no longer quite sure to what extent we can generate the slug automatically. I'll give it some...

So my solution was to create a concern Sluggable: ```crystal module Sluggable macro included macro slugify(from_field, slug_field, *callbacks) \{% if callbacks.size == 0 %} before_validation :generate_slug \{% else %} \{%...