Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test commit: fixed typo, add new file #47

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions _freeze/rupesh/execute-results/html.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"hash": "335dc113b1fdae8a45db737aa8088b5d",
"result": {
"engine": "jupyter",
"markdown": "---\ntitle: Rupesh New File\n---\n\n\n\n## Test for Head\n\n\n::: {#0170d198 .cell execution_count=1}\n``` {.python .cell-code}\nwith open('demo.qmd', 'r') as f:\n f.read()\n```\n:::\n\n\n",
"supporting": [
"rupesh_files"
],
"filters": [],
"includes": {}
}
}
1 change: 1 addition & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ website:
text: "Part 1: Quarto workflow"
contents:
- demo.qmd
- rupesh.qmd
- href: part2-github.qmd
text: "Part 2: GitHub workflow"
- href: next-steps.qmd
Expand Down
22 changes: 21 additions & 1 deletion demo.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,27 @@ For your first edit, you could fix this tpyo and preview how it will look in the

## Rupesh

For your first edit, you could fix this tpyo and preview how it will look in the site.
For your first edit, you could fix this typo and preview how it will look in the site.

### Table example

I am adding a table below:

| Month | Tax |
| -------- | ------- |
| January | $300 |
| February | $500 |
| March | $400 |

### List example
I am adding a list :

- List 1
- List 1
1. List 2
2. List 2



## Roosevelt

Expand Down
8 changes: 8 additions & 0 deletions rupesh.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Rupesh New File

## Test for Head

```{python}
with open('demo.qmd', 'r') as f:
f.read()
```