Merge pull request #2400 from breunigs/ex18

Update Elixir documentation (1.18)
renovate/image_optim-0.x-lockfile
Simon Legner 2 weeks ago committed by GitHub
commit aa16f8357d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -34,7 +34,9 @@ module Docs
node.name = 'h3' node.name = 'h3'
node['id'] = id node['id'] = id
source_href = node.at_css('a.icon-action[title="View Source"]').attr('href') a = node.at_css('a.icon-action[title="View Source"]')
a ||= node.at_css('a.icon-action[aria-label="View Source"]')
source_href = a.attr('href')
node.content = node.at_css('.signature').inner_text node.content = node.at_css('.signature').inner_text
node << %(<a href="#{source_href}" class="source">Source</a>) node << %(<a href="#{source_href}" class="source">Source</a>)

@ -30,6 +30,18 @@ module Docs
"https://hexdocs.pm/mix/#{self.class.release}/Mix.html" ] "https://hexdocs.pm/mix/#{self.class.release}/Mix.html" ]
end end
version '1.18' do
self.release = '1.18.1'
self.base_urls = [
"https://hexdocs.pm/elixir/#{release}/",
"https://hexdocs.pm/eex/#{release}/",
"https://hexdocs.pm/ex_unit/#{release}/",
"https://hexdocs.pm/iex/#{release}/",
"https://hexdocs.pm/logger/#{release}/",
"https://hexdocs.pm/mix/#{release}/"
]
end
version '1.17' do version '1.17' do
self.release = '1.17.2' self.release = '1.17.2'
self.base_urls = [ self.base_urls = [

Loading…
Cancel
Save