Skip to content

Instantly share code, notes, and snippets.

@RickBarretto
Last active January 2, 2022 18:52
Show Gist options
  • Save RickBarretto/475d5f9d1270adc972a0376e0a902edd to your computer and use it in GitHub Desktop.
Save RickBarretto/475d5f9d1270adc972a0376e0a902edd to your computer and use it in GitHub Desktop.
A Css Snippet that adds a autor in Quoteblock on Obsidian (Read my comment)
blockquote
{
width: fit-content;
}
blockquote > ul > li
{
text-align: right;
list-style: none;
}
blockquote > ul > li::before
{
content: "\2014";
margin: .5rem;
}
@RickBarretto
Copy link
Author

RickBarretto commented Jan 2, 2022

What it is

It is a Css Snippet for Obsidian to add a Autor to a Quote on right side.

How to use it

  • Add a unsorted list into a blockquote
> citation
> - autor

Example

> When we speak without jargon, it frees us from hiding behind knowledge we don’t have. Big words and fluffy “business speak” cripples us from getting to the point and passing knowledge to others.
> - Feynman

image

Warning

It was made thinking in use on California Coast Theme

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment