Skip to content

Commit 765ce3a

Browse files
Explain how to install the local help package
1 parent 87b3a12 commit 765ce3a

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

info/README.org

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#+STARTUP: all
2-
#+DATE: Time-stamp: <2021-09-12>
2+
#+DATE: Time-stamp: <2021-10-14>
33
#+bind: org-html-preamble-format (("en" "%d"))
44
#+OPTIONS: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline
55
#+OPTIONS: author:t c:t creator:t d:(not "LOGBOOK") date:t
@@ -65,7 +65,8 @@ Copyright (C) 2006 - 2021 H. Dieter Wilhelm, GPL V3
6565
using your default browser but to be able to access the online help
6666
you must register or you must start the online help once from any
6767
licensed Ansys product. I recommend installing the local Ansys
68-
documentation package, access time is much shorter.
68+
documentation, access time is much shorter. You can download the
69+
"help installer" from their Customer Portal.
6970

7071
The image below is showing a manual entry in GNU-Emacs' EWW
7172
browser. You are able to consult the manuals side-by-side your
@@ -74,6 +75,9 @@ Copyright (C) 2006 - 2021 H. Dieter Wilhelm, GPL V3
7475
# #+caption: Browsing the manual in a web browser (here with eww inside GNU-Emacs).
7576
[[file:doc/browse_manual.png]]
7677

78+
Please read the [[file:info/apdl-config.org][apdl-config]] documentation on how configure EWW as
79+
default browser or check the accompanying [[file:apdl-config.el][configuration template]].
80+
7781
** Command Object Templates and Code Highlighting Example
7882
You are learning and also coding APDL best by example! APDL-Mode
7983
provides coding examples, here called templates, for the most often

info/apdl-config.org

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
#+DATE: Time-stamp: <2021-09-12>
2+
#+DATE: Time-stamp: <2021-10-14>
33
#+bind: org-html-preamble-format (("en" "%d"))
44
#+OPTIONS: ':nil *:t -:t ::t <:t H:3 \n:nil ^:{} arch:headline
55
#+OPTIONS: author:t c:nil creator:comment d:(not "LOGBOOK") date:t
@@ -282,23 +282,23 @@ or 2. by directly manipulating the Emacs configuration file
282282
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
283283
;; Miscellaneous
284284
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
285-
285+
286286
;; use Emacs' EWW browser for locally installed help
287287
(setq browse-url-browser-function 'eww-browse-url)
288288
;; use the default system browser
289289
; (setq browse-url-browser-function 'browse-url-default-browser)
290-
290+
291291
;; Some element collections, like "SHELLS" are implemented with `#'
292292
;; anchors which are not standard URLs. This leads to an error on
293293
;; Windows with w32-shell-execute for locally installed help files.
294294
;; Browsers don't mind the anchors, so in this case use either EWW
295295
;; (see above) or specify an installed browser in your init file, see
296296
;; below example for MS Edge:
297-
297+
298298
(defun browse-url-edge (url &optional new-window)
299299
(shell-command
300300
(concat "start msedge " url)))
301-
301+
302302
; (setq browse-url-browser-function 'browse-url-edge)
303303
#+end_src
304304

0 commit comments

Comments
 (0)