File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ async function loadDescription() {
1313
1414 const description = document . querySelector ( '#description' ) ;
1515 description . innerHTML = html_readme || '' ;
16+ __format_HTML ( description ) ;
1617}
1718
1819/**
@@ -76,3 +77,10 @@ async function loadConfigs() {
7677 const data = await req . json ( ) ;
7778 return data ;
7879}
80+
81+ function __format_HTML ( ctn ) {
82+ const h1 = document . querySelector ( '#title-head' ) ;
83+ const title_reame = ctn . querySelector ( '#dev2forgehttpswwwdev2forgesoftwaredocumentationportal' ) ;
84+ h1 . innerHTML = title_reame . innerHTML ;
85+ title_reame . remove ( ) ;
86+ }
Original file line number Diff line number Diff line change 7070 <!-- Header -->
7171 < header class ="w-full flex justify-between items-center p-6 flex-shrink-0 ">
7272 < div class ="w-full text-center ">
73- < h1 class ="text-3xl font-bold inline "> Docs for Dev2Forge projects </ h1 >
73+ < h1 class ="text-3xl font-bold inline " id =" title-head " > </ h1 >
7474 </ div >
7575 </ header >
7676
You can’t perform that action at this time.
0 commit comments