sundevista / local-quotes

📜 Collect your quotes from all over the vault and embed them in different locations with refresh delays
https://sundevista.github.io/local-quotes/
MIT License
40 stars 1 forks source link

What am I doing wrong? #8

Closed fncll closed 2 years ago

fncll commented 2 years ago

I am receiving the error "You caught an error! etc. " When I insert a new quote block, the authors don't show up. I have cleared metdata cache and re-scanned.

I have the following in one file:

:::One Person:::

> Quote A is a very very short quote.

> Quote B is another quote, not too long, not too short...but something in between.

:::Another Person:::

> Quote C is longer. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui official

#quote

and in another, this:

```localquote
id V6h57
author One Person
refresh 1s
sundevista commented 2 years ago

@fncll Hi! You need to use ordered/unordered lists (start every quote with - or 1....) to enter your quotes. In your list you using >

Also, remember that empty line breaking quote series, so you need write quotes line by line

As example you can use first demo gif in README.

If you still have questions, I'm listen

sundevista commented 2 years ago

@fncll I noticed that you used refresh instead of reload

fncll commented 2 years ago

Here is what I have now, but still no luck with display and authors are not showing up when I try the Add Quote Block command (I did watch the gif, but it goes by very quickly).

```localquote
id V6h57
author One Person
reload 1s

and

:::One Person:::

- Quote A is a very very short quote.
- Quote B is another quote, not too long, not too short...but something in between.

:::Another Person:::

- Quote C is longer. This is written as one long line. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui official

#quote
sundevista commented 2 years ago

@fncll first author's quote must be on the next line, so you need to do like this

:::One Person:::
- Quote A is a very very short quote.
- Quote B is another quote, not too long, not too short...but something in between.

:::Another Person:::
- Quote C is longer. This is written as one long line. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui official

#quote

You can check wiki for more detailed explain

fncll commented 2 years ago

Got it. Thank you for your patience!