-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/marcelo-lourenco/gerador-br
- Loading branch information
Showing
2 changed files
with
95 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Gerador-BR</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="description" content="Gerador de Dados Fictícios - Brasil"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> | ||
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/buble.css"> --> | ||
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/dark.css"> --> | ||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> | ||
|
||
<style> | ||
.sidebar .sidebar-nav { | ||
line-height: 25px; | ||
} | ||
|
||
.app-sub-sidebar li:before { | ||
content: ""; | ||
} | ||
|
||
.sidebar li { | ||
margin: 0px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id="app">Aguarde...</div> | ||
<script> | ||
window.$docsify = { | ||
name: 'Gerador-BR', | ||
repo: 'marcelo-lourenco/gerador-br', | ||
coverpage: true, | ||
autoHeader: true, | ||
loadSidebar: true, | ||
loadNavbar: true, | ||
subMaxLevel: 3, | ||
auto2top: true, | ||
mergeNavbar: true, | ||
basePath: '/docs/', | ||
homepage: 'README.md', | ||
ext: '.md', | ||
themeColor: '#0d6efd', | ||
search: { | ||
placeholder: { | ||
'/': 'Pesquisar', | ||
'/en-us/': 'Search' | ||
}, | ||
noData: { | ||
'/': 'Nenhum resultado', | ||
'/en-us/': 'No Results' | ||
} | ||
}, | ||
copyCode: { | ||
buttonText: { | ||
'/': 'Copiar', | ||
'/en-us/': 'Click to Copy' | ||
}, | ||
errorText: { | ||
'/': 'Erro', | ||
'/en-us/': 'Error' | ||
}, | ||
successText: { | ||
'/': 'Copiado', | ||
'/en-us/': 'Copy' | ||
} | ||
}, | ||
plugins: [ | ||
function (hook) { | ||
var footer = [ | ||
'<hr/>', | ||
'<footer style="text-align: center; font-size: smaller;">', | ||
'<span><a href="https://github.com/marcelo-lourenco/gerador-br">Gerador-BR</a> © 2024.</span>', | ||
'</footer>' | ||
].join(''); | ||
|
||
hook.afterEach(function (html) { | ||
return html + footer | ||
}) | ||
} | ||
] | ||
} | ||
</script> | ||
<!-- Docsify v4 --> | ||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/prism-python.min.js"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/zoom-image.js"></script> | ||
</body> | ||
|
||
</html> |