-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/aplteam/CodeBrowser
- Loading branch information
Showing
1 changed file
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
# CodeBrowser | ||
|
||
CodeBrowser allows you to... | ||
|
||
## Overview | ||
|
||
CodeBrowser allows you to create a stand-alone HTML document with APL code. It's purpose is to provide a tool for documentation and code reviews. | ||
|
||
The HTML carries plenty of links. That makes it easy to jump around when reviewing code. | ||
|
||
The CSS is optimized for printing the document in order to make it look nice. | ||
|
||
|
||
## Installation | ||
|
||
Make sure that the contents of the zip file goes into a folder that is scanned by Dyalog APL for user commands. | ||
|
||
Any newly started instance of Dyalog APL then knows a user commands `]CodeBrowser`. | ||
|
||
Enter | ||
|
||
``` | ||
]?CodeBrowser | ||
``` | ||
|
||
for how to run the user command (reference) | ||
|
||
For a detailed documentation including examples enter | ||
|
||
``` | ||
]??CodeBrowser | ||
``` | ||
|
||
The simplest example: | ||
|
||
``` | ||
]CodeBrowser ⎕se -vib | ||
``` | ||
|
||
The `-vib` flag stands for `wiew in browser`. This will allow you to see everything in `⎕SE`. |