2
hello
In the shell, you need to escape or nest quotes.
Welcome to my **new site**!
This is an example of a markdown file, a common way to write text with formatting.
Welcome to my **new site**!
Unlike most programming languages, Origami lets you use periods and hyphens in names!
Welcome to my **new site**!
<p>Welcome to my <strong>new site</strong>!</p>
Welcome to my **new site**!
<p>Welcome to my <strong>new site</strong>!</p>
- name: Alice image: van.jpg location: Honolulu bio: After working as a manager for numerous startups over the years, I decided to take the plunge and start a business of my own. - name: Bob image: kingfisher.jpg location: Los Angeles bio: Having been an art student for 11 years, I constantly explore various disciplines to incorporate artistic pursuits into product design studies. - name: Carol image: venice.jpg location: Venice bio: I open the line of communication between clients, customers, and businesses to get projects done.
- name: Alice
image: van.jpg
location: Honolulu
bio: After working as a manager for numerous startups over the years, I
decided to take the plunge and start a business of my own.
- name: Bob
image: kingfisher.jpg
location: Los Angeles
bio: Having been an art student for 11 years, I constantly explore various
disciplines to incorporate artistic pursuits into product design studies.
- name: Carol
image: venice.jpg
location: Venice
bio: I open the line of communication between clients, customers, and
businesses to get projects done.
Alice
myProject/ package.json README.md src/ hello.md teamData.yaml
If you were in the src folder, the project’s top-level files would also be in scope.
myProject/ package.json README.md src/ hello.md teamData.yaml
This is the README file.
export default (name) => `Hello, ${name}!`;
export default (name) => `Hello, ${name}!`;
Hello, world!
Hello, Alice!
greet.js(teamData.yaml/0/name)
Origami files have a .ori extension.
greet.js(teamData.yaml/0/name)
greet.js(teamData.yaml/0/name)
greet.js(teamData.yaml/0/name)
Hello, Alice!
a: 1
1
{
index.html: mdHtml(hello.md)
}
This little site has a single page called index.html, the name given to the default page.
{
index.html: mdHtml(hello.md)
}
<p>Welcome to my <strong>new site</strong>!</p>
{
index.html: mdHtml(hello.md)
}
Server running at http://localhost:5000. Press Ctrl+C to stop.
Welcome to my new site!
myProject/ build/ index.html package.json src/ hello.md site.ori
<p>Welcome to my <strong>new site</strong>!</p>
Some file hosting services are free!
To be continued!