Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow listing outside URLs in extras #2103

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

sorentwo
Copy link

@sorentwo sorentwo commented Mar 31, 2025

This makes it possible to delcare URLs as extras and have them listed as links in the sidebar. For example, to set a "Wikipedia" url:

extras: [
  "Wikipedia": [url: "https://wikipedia.com"]
]

This is currently light on some validations. I'll expand the tests and URI validation if the approach is improved.

  • Handle urls in epub
  • Validate the url value is an actual URI
  • Expand formatter tests
  • Document usage of url options

Closes #2084

This makes it possible to delcare URLs as extras and have them listed as
links in the sidebar. For example, to set a "Wikipedia" url:

```elixir
extras: [
  "Wikipedia": [url: "https://wikipedia.com"]
]
```

Closes elixir-lang#2084
Comment on lines +389 to +390
defp normalize_extras(base) when is_binary(base), do: {base, %{}}
defp normalize_extras({base, opts}), do: {base, Map.new(opts)}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is purely for pattern matching to flatten out build_extra/5. The alternative was a cond in build_extra/5, but this seemed a little clearer.

Comment on lines +406 to +407
source_path: input_options[:url],
source_url: input_options[:url],
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These probably aren't necessary now.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, we probably don't need id, source_path, source_url and title_content, as those are all about the rendered page.

Comment on lines -22 to -24
if custom_search_data = map[:search_data] do
extra_search_data(map, custom_search_data)
else
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a clause for this rather than a conditional in the function body.

txid =
cond do
filename = opts[:filename] -> filename
url = opts[:url] -> url
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am pretty sure you want to skip the :url in this case, because this is used to convert something like [foo](foo.md) into a link for foo.html, but there is nothing to link to in the URL case.

@josevalim
Copy link
Member

For the epub, because there is no sidebar, should we even render them? Or should we just discard them upfront? Also, I wouldn't validate the url. It is the user docs, they can put whatever they want in there. :) Especially because even something like foo.html or foo.pdf would be valid ones.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Allow urls as extra
2 participants