Open
Conversation
owenvoke
requested changes
Mar 27, 2026
|
|
||
| # Custom request headers | ||
| headers = [] | ||
| header = { "accept" = "text/html", "x-custom-header" = "value" } |
Member
There was a problem hiding this comment.
I don't think we need a custom header here. 👍🏻
Suggested change
| header = { "accept" = "text/html", "x-custom-header" = "value" } | |
| header = { "accept" = "text/html" } |
| ############################# Runtime ############################# | ||
|
|
||
| # File to read and write cookies | ||
| cookie_jar = "cookie-jar" |
Member
There was a problem hiding this comment.
Let's comment out bits that aren't relevant for us.
Suggested change
| cookie_jar = "cookie-jar" | |
| # cookie_jar = "cookie-jar" |
| default_extension = "md" | ||
|
|
||
| # GitHub API token | ||
| github_token = "secret" |
Member
There was a problem hiding this comment.
Suggested change
| github_token = "secret" | |
| # github_token = "secret" |
| github_token = "secret" | ||
|
|
||
| # Resolve directories to index files | ||
| index_files = ["index.html"] |
Member
There was a problem hiding this comment.
Suggested change
| index_files = ["index.html"] | |
| # index_files = ["index.html"] |
| index_files = ["index.html"] | ||
|
|
||
| # Preprocess input files | ||
| preprocess = { command = "preprocess.sh" } |
Member
There was a problem hiding this comment.
Suggested change
| preprocess = { command = "preprocess.sh" } | |
| # preprocess = { command = "preprocess.sh" } |
|
|
||
| # Remap URI matching pattern to different URI. | ||
| remap = [ "https://example.com http://example.invalid" ] | ||
| remap = ["https://example.com http://example.invalid"] |
Member
There was a problem hiding this comment.
Suggested change
| remap = ["https://example.com http://example.invalid"] | |
| # remap = ["https://example.com http://example.invalid"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi @owenvoke,
This PR updates
lychee.tomlaccording to the example proposed in the actions feedback https://github.com/lycheeverse/lychee/blob/lychee-v0.23.0/lychee.example.tomlPS: Sorry for the goofy branch commit.