https://github.com/cwickham/dir_exclude
https://github.com/cwickham/dir_exclude
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cwickham/dir_exclude
- Owner: cwickham
- Created: 2023-02-25T20:44:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-25T21:26:41.000Z (over 3 years ago)
- Last Synced: 2025-08-24T17:00:19.607Z (10 months ago)
- Language: JavaScript
- Size: 306 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# To replicate issue
Render using a profile:
```
quarto render --profile narrow-body
```
This creates `_narrow-body` as expected, and `_narrow-body` doesn't contain `_site` as expected.
```
_narrow-body/
├── about.html
├── default-layout.html
├── default-layout_files
├── index.html
├── search.json
├── site_libs
└── styles.css
```
Now render without a profile:
```
quarto render
```
`_site` now includes `_narrow-body`:
```
_site/
├── _narrow-body
├── about.html
├── default-layout.html
├── default-layout_files
├── index.html
├── search.json
├── site_libs
└── styles.css
```
Problem seems to be adding the file `default-layout.qmd` - delete this file and there is no unexpected behavior.