discourse/app
Sam Saffron 69aa8f18c2 FEATURE: allow for custom excerpt BBCODE
This allows fidelity in controlling excerpt (text that shows up when you pin a topic or link to it externally):

```
I am some text

[excerpt]
This is some **custom** markdown that should be the excerpt
[/excerpt]

More text
```

Previous solution relied on DIVs, unfortunately DIVs do not play well,
by design with mixing markdown unless you have a preceding newline eg:

```
<div class='hello'>

this will be treated properly as markdown

</div>
```

This extra newline is not desirable.

I am also considering adding

```
[div class=excerpt]
[/div]
```

This would offer lots of flexibility to themes and plugins that do not want the extra annoying newline.
2018-12-25 17:02:28 +02:00
..
assets FEATURE: allow for custom excerpt BBCODE 2018-12-25 17:02:28 +02:00
controllers PERF: Eradicate N+1 queries from the theme admin page 2018-12-21 11:03:58 +02:00
helpers FIX: Use CDN for logos and icons. (#6698) 2018-12-19 10:20:48 +01:00
jobs FEATURE: Improve backup stats on admin dashboard 2018-12-17 11:35:11 +01:00
mailers DEV: Refactor location string builders. (#6794) 2018-12-20 10:23:05 +01:00
models FIX: validate YAML before save to avoid race condition 2018-12-25 15:08:17 +02:00
serializers PERF: Eradicate N+1 queries from the theme admin page 2018-12-21 11:03:58 +02:00
services DEV: group all collapsed notifications 2018-12-24 12:44:50 +01:00
views Remove extra `apple-touch-icon` link in head. 2018-11-29 15:24:52 +08:00