Ola Christensson

Results 12 comments of Ola Christensson

Yes I tried it and it worked. But I ended up using a slightly modified version for a project. The problem was that I used the same `.htaccess` file on...

I'm using the [React Native implementation](https://github.com/tienphaw/react-native-capsize) and also need to look up the font metrics using the website. Would love to see an option to see these values directly on...

@michaeltaranto I will look into extracting the metrics programmatically as you suggest. But, _and you must correct me if I'm wrong_: if I'm using the [fromFile](https://github.com/seek-oss/capsize/tree/master/packages/unpack#fromfile) function, is it correct...

@michaeltaranto Thank you for giving of your time to clarify things. Really appreciate this. I will try to find a solution that work for us.

Here is another variant I have encountered (not tested): ```css @media (prefers-reduced-motion: reduce) { * { animation-duration: 0s !important; transition: none !important; scroll-behavior: auto !important; } } ``` From: https://github.com/jonikorpi/base-files/blob/e584daf4772d29ff63ddf6d60c49f7652729c422/reset.css#L133-L139

Basic screen reader support added in v2.0.0. But I will leave this issue open for future improvements in this area.

You can have a look at the PR #33 I just made. I solved it this way: `seo('title')` returns the content wrapped in html. I.e: `title content` `seo('title')->value()` returns the...

And as you write, a global `seo()` function might not be the best way to solve this. Maybe better to assign it to the `$page` object? ```html ```

Good. Until then, I just encountered a problem where I need to output the SEO title from another page. Since you use a global seo function which is only for...

Well, this is the preferred behavior? The built in functions of Kirby has this behavior where you must manually echo the results. I.e: https://getkirby.com/docs/cheatsheet/helpers/url So in my opinion this issue...