Skip to content

Commit 3cb0232

Browse files
committed
fix
1 parent cfc97ec commit 3cb0232

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ navbar-links:
1515
- Performance Tests: "https://github.com/AlliedTesting/pgmex-jdbc-perf-test"
1616

1717
excerpt_separator: <!--end_of_excerpt-->
18-
excerpt_length: 200
18+
excerpt_length: 250
1919

2020
google_analytics: "UA-47711680-2"
2121

feed.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ layout: null
1313
<title>{{ post.title | xml_escape }}</title>
1414
<description>
1515
{% if post.subtitle %}{{ post.subtitle | xml_escape }} - {% endif %}
16-
{{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
16+
{{ post.excerpt | xml_escape | truncatewords: site.excerpt_length }}
1717
{% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
1818
<a href="{{ site.url }}{{ post.url }}">[Read More]</a>
1919
{% endif %}

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1>{{ site.title }}</h1>
2424
<h2 class="post-title"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
2525
{% include post/meta.html %}
2626
<div class="post-entry">
27-
{{ post.excerpt | replace: '</p>', '\n' | strip_html | replace: '\n', '"<br/>"' | xml_escape | truncatewords: site.excerpt_length }}
27+
{{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
2828
{% assign excerpt_word_count = post.excerpt | number_of_words %}
2929
{% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
3030
<a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read&nbsp;More]</a>

0 commit comments

Comments
 (0)