replace nbsp characters

This commit is contained in:
David Lord 2021-11-16 08:34:55 -08:00
parent d086a512d7
commit 9fe21310bb
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
1 changed files with 22 additions and 22 deletions

View File

@ -57,29 +57,29 @@ By the end, your project layout will look like this:
/home/user/Projects/flask-tutorial
├── flaskr/
   ├── __init__.py
   ├── db.py
   ├── schema.sql
   ├── auth.py
   ├── blog.py
   ├── templates/
   │ ├── base.html
   │ ├── auth/
   │ │   ├── login.html
   │ │   └── register.html
   │ └── blog/
   │ ├── create.html
   │ ├── index.html
   │ └── update.html
   └── static/
      └── style.css
├── __init__.py
├── db.py
├── schema.sql
├── auth.py
├── blog.py
├── templates/
│ ├── base.html
│ ├── auth/
│ │ ├── login.html
│ │ └── register.html
│ └── blog/
│ ├── create.html
│ ├── index.html
│ └── update.html
└── static/
└── style.css
├── tests/
   ├── conftest.py
  ├── data.sql
   ├── test_factory.py
   ├── test_db.py
  ├── test_auth.py
  └── test_blog.py
├── conftest.py
├── data.sql
├── test_factory.py
├── test_db.py
├── test_auth.py
└── test_blog.py
├── venv/
├── setup.py
└── MANIFEST.in