B:BD[
3.13357] → [
3.13357:13431]
pub fn convert_smbc_entry(entry: &Entry, feed_title: &String) -> JFItem {
/// Convert a `[feed_rs::model::Entry]` to a `[json_feed_model::Item]`, with modified content
///
/// Content modification: see `[create_rewrite_settings]`. Item ID,
/// timestamps, url, authors are copied verbatim. Feed title is
/// prepended to item title.
///
/// Similar to huginn `item` template:
/// ```json
/// "item": {
/// "title": "{{feed.title}}: {{title}}",
/// "description": "{{ content | filters_were_here }} <p> {{ title_text }} <p> {{ extra }}",
/// "link": "{{url}}",
/// "guid": "{{url}}",
/// "pubDate": "{{last_updated}}",
/// "author": "{{authors}}"
/// },
/// ```
/// More about `description` in `[create_rewrite_settings]`
pub fn convert_entry(entry: &Entry, feed_title: &String) -> JFItem {