question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Excerpt displaying

See original GitHub issue

Hello, i don’t find how to display the excerpt on a list of articles.

 <div v-for="article in articles" :key="article._path">
      <h2>{{ article.title }}</h2>
      <ContentRenderer :value="article" :excerpt="true" />
    </div>

this code display all the content of page : Screenshot 2022-08-08 at 15 35 31

Thanks for help 👍🏼

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:12 (5 by maintainers)

github_iconTop GitHub Comments

3reactions
farnabazcommented, Aug 9, 2022

It is possible to do this extraction. The module supports creating custom transformers to manipulate parsed contents. Unfortunately, transformers are not documented yet.

I’ll ping in this issue once the documentation is updated 🙂

2reactions
farnabazcommented, Aug 9, 2022

<!--mode--> is a delimiter that is used to determine excerpt paragraphs. You can simply add <!--more--> in any line of your content and by doing it above paragraphs will become part of the excerpt.

# title

First paragraph

Second paragraph

<!--more-->

Third paragraph. (not included in excerpt)
Read more comments on GitHub >

github_iconTop Results From Across the Web

How to Display Post Excerpts in WordPress Themes
Post excerpts are commonly used on blog index and archive pages to avoid displaying the full text for every article on your WordPress...
Read more >
How to Show a WordPress Excerpt in Your Theme
This widget allows you to choose how many posts to display and will show the title, thumbnail, and a small excerpt. You can...
Read more >
the_excerpt() | Function - WordPress Developer Resources
Displays the excerpt of the current post after applying several filters to it including auto-p formatting which turns double line-breaks into HTML ...
Read more >
How to Fix WordPress Post Excerpt Not Showing for Your Site
This article will show you several different methods that can help you fix the WordPress post excerpt not showing issue on your business ......
Read more >
What Is a WordPress Excerpt? (Tips and Tricks) - Kinsta
A WordPress excerpt is basically a summary of a longer article, often used as a replacement on the blog index and archives pages...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found