Skip to content

Commit

Permalink
Readme is updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmart committed Jan 8, 2023
1 parent 5d75d45 commit 24c484c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Readme.org
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,13 @@
#+END_EXAMPLE



Every stored attachment is referenced from within the Org document,
either as an image which could be viewed inline or as an link so
that the attachment could be opened easily within an external application.

If the switch ~-regardDiv~ is set to true EverOrg inserts a newline for every <div> block.
Within tables <div> blocks are ignored at any time.

** Usage
Export notebooks from Evernote to ENEX files, and then convert them to
org-mode with this command:
Expand Down
28 changes: 28 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
TRGT=everorg-0.3

# Windows Intel
GOOS=windows GOARCH=amd64 go build -o everorg.exe
tar czf $TRGT-windows-amd64.tgz everorg.exe

# Windows Intel 386
GOOS=windows GOARCH=386 go build -o everorg.exe
tar czf $TRGT-windows-386.tgz everorg.exe

# Linux Intel
GOOS=linux GOARCH=amd64 go build -o everorg
tar czf $TRGT-windows-amd64.tgz everorg

# Linux ARM
GOOS=linux GOARCH=arm go build -o everorg
tar czf $TRGT-windows-arm.tgz everorg

# MacOS Intel
GOOS=darwin GOARCH=amd64 go build -o everorg
tar czf $TRGT-darwin-amd64.tgz everorg

# MacOS ARM
GOOS=darwin GOARCH=arm64 go build -o everorg
tar czf $TRGT-darwin-arm64.tgz everorg



0 comments on commit 24c484c

Please sign in to comment.