christianwannerstedt / obsidian-key-value-list

Obsidian plugin which makes it easy to turn lists into formatted key value lists
MIT License
34 stars 0 forks source link

1. turn off by default, rather than on by default 2. buggy display in preview mode #23

Open ksdavidc opened 8 months ago

ksdavidc commented 8 months ago
  1. I only want it to be active in certain files. My workaround is to use a strange delimeter, but that causes problems as well. It would be better if it were off by default and one could use frontmatter to turn on.
  2. see the width of the key value pairs in this screenshot, which are inconsistent. Screenshot 2024-03-20 at 2 42 08 AM

(yes, the last is false. this is a true false exam.) Also, sometimes I intermittently get really short rows or anomalies that sort of go away if I click in each row...

Screenshot 2024-03-20 at 2 55 28 AM

I tried various css such as

kvl-value {
    width: 100%!important;
}

.kvl-key {
    width: 100%!important;
}

.kvl-row {
    width: 100%!important;
    display: inline-block;
}

.kvl-row-inner {
    width: 100%!important;
    display: inline-block;
}

This seems to work the best, but is not perfect.

.kvl-row {
    width: 100%;
    display: inline-block;
    min-width: 70vw!important;
}
SimonRiemertzon commented 1 month ago

I'm also experiencing this problem! The plugin seems to load in some CSS that is conflicting with obsidians own CSS. This makes the plugin unusable for me currently. I'm not in a position to look into this myself, but hope someone finds the issue! 🙏