mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
fastapi: add news entry
This commit is contained in:
parent
3f2cee980c
commit
add806dd0f
2 changed files with 6 additions and 17 deletions
|
@ -1,4 +1,8 @@
|
||||||
[
|
[
|
||||||
|
[
|
||||||
|
"2022-10-09",
|
||||||
|
"New documentation: <a href=\"/fastapi/\">FastAPI</a>"
|
||||||
|
],
|
||||||
[
|
[
|
||||||
"2022-10-02",
|
"2022-10-02",
|
||||||
"New documentation: <a href=\"/svelte/\">Svelte</a>"
|
"New documentation: <a href=\"/svelte/\">Svelte</a>"
|
||||||
|
|
|
@ -14,27 +14,12 @@ module Docs
|
||||||
at_css('h1').content
|
at_css('h1').content
|
||||||
end
|
end
|
||||||
|
|
||||||
def get_name_other
|
|
||||||
header = at_css('h1')
|
|
||||||
if header
|
|
||||||
header.content
|
|
||||||
else
|
|
||||||
path_parts.last.titleize
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def get_type
|
def get_type
|
||||||
if path_parts.length <= 1
|
if path_parts.length <= 1
|
||||||
data = at_css('h1').content
|
at_css('h1').content
|
||||||
else
|
else
|
||||||
data = path_parts[0...path_parts.length-1].join(": ").titleize + ": " + at_css('h1').content
|
path_parts[0...-1].join(": ").titleize + ": " + at_css('h1').content
|
||||||
end
|
end
|
||||||
|
|
||||||
data
|
|
||||||
end
|
|
||||||
|
|
||||||
def path_count
|
|
||||||
path_parts.length
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def additional_entries
|
def additional_entries
|
||||||
|
|
Loading…
Reference in a new issue