Skip to content

Commit

Permalink
versao 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ErisonBarros committed Feb 28, 2022
1 parent d1147dc commit 833b7dc
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 0 deletions.
79 changes: 79 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
---
# Welcome to MkDocs
---

For full documentation visit [mkdocs.org](https://www.mkdocs.org).



# Markdown



# Etapas necessárias

- [ ] Etapa 1
- [ ] Etapa 2
- [x] Etapa 3
- [ ] Etapa 4

# Bloco de Código Cercado

````python
```
a=2
b=3
a+b=

````



# Conseguir fazer

1. Teste 1
2. Teste 2
3. Teste 3
3. Teste 4
3. Teste 5

Linhas de Programação - Comandos



## Commands

* `pip install mkdocs` - Instalação da documentação
* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs -h` - Print help message and exit.

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.

# Emoji

:snake:

# Tachado



# Realce

== realce==

# Blocos de Programação

```{.py3 linenums="1" title="arquivo1.py"}
a=1
b=2
c=a+b
c
```

37 changes: 37 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
site_name: Projeto de Levantamento Topográfico
theme:
name: material
palette:
- scheme: default
primary: purple
toggle:
icon: material/weather-night
name: Modo noturno
- scheme: slate
primary: deep purple
toggle:
icon: material/weather-sunny
name: Modo Claro


nav:
- Home: index.md
- Notebook page: notebook.ipynb
- Python file: python_script.py
- dois: pag_2.md
- tres: pag_3.md
plugins:
- mkdocs-jupyter

markdown_extensions:
- pymdownx.emoji # Suporte a emojis
- pymdownx.tasklist # Suporte a tarefas
- pymdownx.mark # suporte a marcaçoes
- pymdownx.tilde # suporte a tachado
- pymdownx.highlight # suporte a codigo
- pymdownx.superfences # suporte a codigo





0 comments on commit 833b7dc

Please sign in to comment.