Don't show the "description" in the blog post #3495
-
I like to have short summaries/descriptions of my blog posts show up in the home page listing all the blog posts, but I don't want them to show up in the blog posts themselves. I can't figure out how to configure that. For example, I have this at the top of a blog post's ---
title: "Analyzing Larger-than-Memory Data on your Laptop"
author: "Ben Lindsay"
date: "2017-03-10"
categories:
- "python"
- "recommender systems"
- "dask"
- "pandas"
- "big data"
description: "Dask is an amazing Python library that lets you do all your Pandas-style dataframe manipulations with just a few simple tweaks so you don't have to worry about Jupyter freezing up."
--- Here's how that shows up in the post listings, as desired: But then in that post, I don't want that description (the highlighted part) cluttering up the head of the post Is there a way to configure that so the summary shows up in the post listing but not in the post itself? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Quickly, my first thought would be to modify the |
Beta Was this translation helpful? Give feedback.
-
For my use case, adding this to the #quarto-document-content .description {
display: none
} |
Beta Was this translation helpful? Give feedback.
For my use case, adding this to the
styles.css
file did the trick: