Skip to content

Commit

Permalink
docs: update links to filtering rules
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagowfx authored Jul 17, 2024
1 parent 968355f commit 8d4d092
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions internal/template/templates/views/add_subscription.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ <h1 id="page-header-title">{{ t "page.add_feed.title" }}</h1>
{{ t "form.feed.label.blocklist_rules" }}
</label>
&nbsp;
<a href=" https://miniflux.app/docs/rules.html#filtering-rules" target="_blank">
<a href=" https://miniflux.app/docs/rules.html#feed-filtering-rules" target="_blank">
{{ icon "external-link" }}
</a>
</div>
Expand All @@ -95,7 +95,7 @@ <h1 id="page-header-title">{{ t "page.add_feed.title" }}</h1>
{{ t "form.feed.label.keeplist_rules" }}
</label>
&nbsp;
<a href=" https://miniflux.app/docs/rules.html#filtering-rules" target="_blank">
<a href=" https://miniflux.app/docs/rules.html#feed-filtering-rules" target="_blank">
{{ icon "external-link" }}
</a>
</div>
Expand Down
4 changes: 2 additions & 2 deletions internal/template/templates/views/edit_feed.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ <h3>{{ t "page.edit_feed.last_parsing_error" }}</h3>
{{ t "form.feed.label.blocklist_rules" }}
</label>
&nbsp;
<a href="https://miniflux.app/docs/rules.html#filtering-rules" target="_blank">
<a href="https://miniflux.app/docs/rules.html#feed-filtering-rules" target="_blank">
{{ icon "external-link" }}
</a>
</div>
Expand All @@ -153,7 +153,7 @@ <h3>{{ t "page.edit_feed.last_parsing_error" }}</h3>
{{ t "form.feed.label.keeplist_rules" }}
</label>
&nbsp;
<a href="https://miniflux.app/docs/rules.html#filtering-rules" target="_blank">
<a href="https://miniflux.app/docs/rules.html#feed-filtering-rules" target="_blank">
{{ icon "external-link" }}
</a>
</div>
Expand Down
11 changes: 9 additions & 2 deletions internal/template/templates/views/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,15 +212,22 @@ <h1 id="page-header-title">{{ t "page.settings.title" }}</h1>
<label for="form-blocklist-rules">
{{ t "form.feed.label.blocklist_rules" }}
</label>
&nbsp;
<a href=" https://miniflux.app/docs/rules.html#global-filtering-rules" target="_blank">
{{ icon "external-link" }}
</a>
</div>
<textarea id="form-blocklist-rules" name="block_filter_entry_rules" cols="40" rows="10" spellcheck="false">{{ .form.BlockFilterEntryRules }}</textarea>

<div class="form-label-row">
<label for="form-keeplist-rules">
{{ t "form.feed.label.keeplist_rules" }}
</label>
<a href=" https://miniflux.app/docs/rules.html#global-filtering-rules" target="_blank">
{{ icon "external-link" }}
</a>
</div>
<textarea id="form-keeplist-rules" name="keep_filter_entry_rules" cols="40" rows="10" spellcheck="false">{{ .form.KeepFilterEntryRules }}</textarea>
<textarea id="form-keeplist-rules" name="keep_filter_entry_rules" cols="40" rows="10" spellcheck="false">{{ .form.KeepFilterEntryRules }}</textarea>

<div class="buttons">
<button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
Expand Down

0 comments on commit 8d4d092

Please sign in to comment.