mirror of https://github.com/freeCodeCamp/devdocs
parent
454a9b29a1
commit
8bbbb9e634
@ -0,0 +1,11 @@
|
|||||||
|
module Docs
|
||||||
|
class Svelte
|
||||||
|
class CleanHtmlFilter < Filter
|
||||||
|
def call
|
||||||
|
@doc = at_css('main > .content')
|
||||||
|
at_css('h1').content = 'Svelte'
|
||||||
|
doc
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,27 @@
|
|||||||
|
module Docs
|
||||||
|
class Svelte
|
||||||
|
class EntriesFilter < Docs::EntriesFilter
|
||||||
|
def get_type
|
||||||
|
'Svelte'
|
||||||
|
end
|
||||||
|
|
||||||
|
def additional_entries
|
||||||
|
type = 'Svelte'
|
||||||
|
subtype = nil
|
||||||
|
css('h2, h3, h4').each_with_object [] do |node, entries|
|
||||||
|
if node.name == 'h2'
|
||||||
|
type = node.content.strip
|
||||||
|
subtype = nil
|
||||||
|
elsif node.name == 'h3'
|
||||||
|
subtype = node.content.strip
|
||||||
|
subtype = nil unless subtype[/Component directives|Element directives/]
|
||||||
|
end
|
||||||
|
next if type == 'Before we begin'
|
||||||
|
name = node.content.strip
|
||||||
|
name.concat " (#{subtype})" if subtype && node.name == 'h4'
|
||||||
|
entries << [name, node['id'], subtype || type]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
After Width: | Height: | Size: 954 B |
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1 @@
|
|||||||
|
https://svelte.dev/favicon.png
|
Loading…
Reference in new issue