We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a180195 commit 9437a28Copy full SHA for 9437a28
examples/build/index.org
@@ -0,0 +1,11 @@
1
+#+title: Build with Orga
2
+
3
+* Hi
4
5
+You can build a static website with *just* org files.
6
7
+Here's [[file:more.org][another page]].
8
9
+#+begin_src sh
10
+orga-build
11
+#+end_src
examples/build/more.org
@@ -0,0 +1,3 @@
+#+title: Another Page
+This is another page.
examples/build/package.json
@@ -0,0 +1,12 @@
+{
+ "name": "@orgajs/example-build",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "dev": "orga-build dev",
+ "build": "orga-build"
+ },
+ "devDependencies": {
+ "orga-build": "workspace:^"
+ }
12
+}
0 commit comments