htmlfontify: Non-interactive

 
 2.2 Non-interactive
 ===================
 
 In addition to the aforementioned interactive methods, Htmlfontify
 provides the following non-interactive ones:
 
 ‘hfy-face-to-style’
 
 
           (hfy-face-to-style FN)
 
      Take FN, a font or ‘defface’ style font specification, (as returned
      by ‘face-attr-construct’ or Seehfy-face-attr-for-class) and
      return a Seehfy-style-assoc.
 
      See also: Seehfy-face-to-style-i, Seehfy-flatten-style.
 
 ‘hfy-fallback-color-values’
 
 
           (hfy-fallback-color-values COLOR-STRING)
 
      Use a fallback method for obtaining the rgb values for a color.  If
      Seehtmlfontify-load-rgb-file has been called, it uses the
      color map specified, otherwise it uses Htmlfontify’s built in map.
 
 ‘hfy-combined-face-spec’
 
 
           (hfy-combined-face-spec FACE)
 
      Return a ‘defface’ style alist of possible specifications for FACE,
      with any entries resulting from user customization
      (‘custom-set-faces’) taking precedence.
 
      See also: Seehfy-default-face-def
 
 ‘hfy-word-regex’
 
 
           (hfy-word-regex STRING)
 
      Return a regex that matches STRING as the first ‘match-string’,
      with non word characters on either side (vaguely emulating the perl
      ‘\b’ regex atom).
 
 ‘hfy-force-fontification’
 
 
           (hfy-force-fontification)
 
      Emacs’s fontification is designed for interactive use.  As such, it
      sometimes does things like deferring fontification until a section
      of the buffer is exposed and rendered, or until Emacs is idle for a
      while.  Sometimes, in non-interactive circumstances, or if it can’t
      see X, it doesn’t bother with some of the harder stuff.  While this
      is all great from the perspective of a user waiting for Emacs to
      load a 20000 line file and colorize it, it’s a pain from the point
      of view from non-interactive code.  This function lies, cheats,
      steals and generally bullies Emacs into fontifying a buffer from
      start to finish, with all the extra frills, whether it thinks it
      needs to or not.  Oh yes: it operates on the current buffer.
 
 ‘hfy-link-style-string’
 
 
           (hfy-link-style-string STYLE-STRING)
 
      Replace the end of a CSS style declaration STYLE-STRING with the
      contents of the variable Seehfy-src-doc-link-style, removing
      text matching the regex Seehfy-src-doc-link-unstyle first, if
      necessary.
 
 ‘hfy-prepare-index-i’
 
 
           (hfy-prepare-index-i SRCDIR DSTDIR FILENAME &optional STUB MAP)
 
      Prepare a tags index buffer for SRCDIR.  Seehfy-tags-cache
      must already have an entry for SRCDIR for this to work.  See
      hfy-page-header, Seehfy-page-footer, Seehfy-link-extn
      and Seehfy-extn all play a part here.
 
      If STUB is set, prepare an (appropriately named) index buffer
      specifically for entries beginning with STUB.
 
      If MAP is set, use that instead of Seehfy-tags-cache.
 
 ‘hfy-compile-stylesheet’
 
 
           (hfy-compile-stylesheet)
 
      Trawl the current buffer, construct and return a See
      hfy-sheet-assoc.
 
 ‘hfy-css-name’
 
 
           (hfy-css-name FN)
 
      Strip some of the boring bits from a font-name and return a CSS
      style name.  If FN is a ‘defface’ attribute list, either construct
      a name for it, store it in the cache, and return it, or just fetch
      it from the cache if it’s already there.
 
 ‘hfy-make-directory’
 
 
           (hfy-make-directory DIR)
 
      Approximate equivalent of ‘mkdir -p DIR’.
 
 ‘hfy-triplet’
 
 
           (hfy-triplet COLOR)
 
      Takes a color name (string) and return a CSS rgb(R, G, B) triplet
      string.  Uses the definition of “white” to map the numbers to the
      0-255 range, so if you’ve redefined white, (especially if you’ve
      redefined it to have a triplet member lower than that of the color
      you are processing, strange things may happen).
 
 ‘hfy-default-footer’
 
 
           (hfy-default-footer FILE)
 
      Default value for Seehfy-page-footer
 
 ‘hfy-list-files’
 
 
           (hfy-list-files DIRECTORY)
 
      Return a list of files under DIRECTORY.  Strips any leading ‘./’
      from each filename.
 
 ‘hfy-color-vals’
 
 
           (hfy-color-vals COLOR)
 
      Where COLOR is a color name or #XXXXXX style triplet, return a list
      of 3 (16 bit) rgb values for said color.  If a window system is
      unavailable, calls Seehfy-fallback-color-values.
 
 ‘hfy-href-stub’
 
 
           (hfy-href-stub THIS-FILE DEF-FILES TAG)
 
      Return an href stub for a tag href: if DEF-FILES (list of files
      containing definitions for the tag in question) contains only one
      entry, the href should link straight to that file.  Otherwise, the
      link should be to the index file.
 
      We are not yet concerned with the file extensions/tag line number
      and so on at this point.
 
      If Seehfy-split-index is set, and the href will be to an index
      file rather than a source file, append a ‘.X’ to See
      hfy-index-file, where ‘X’ is the uppercased first character of
      TAG.
 
      See also: Seehfy-relstub, Seehfy-index-file.
 
 ‘hfy-line-number’
 
 
           (hfy-line-number)
 
      Returns the line number of the point in the current buffer.
 
 ‘hfy-merge-adjacent-spans’
 
 
           (hfy-merge-adjacent-spans FACE-MAP)
 
      Where FACE-MAP is a Seehfy-facemap-assoc for the current
      buffer, this function merges adjacent style blocks which are of the
      same value and are separated by nothing more interesting than
      whitespace.
 
      ‘<span class="foo">narf</span> <span class="foo">brain</span>’
 
      (as interpreted from FACE-MAP) would become:
 
      ‘<span class="foo">narf brain</span>’
 
      Returns a modified copy of FACE-MAP (also a See
      hfy-facemap-assoc).
 
 ‘hfy-mark-tag-names’
 
 
           (hfy-mark-tag-names SRCDIR FILE)
 
      Mark tags in FILE (lookup SRCDIR in Seehfy-tags-cache) with
      the ‘hfy-anchor’ property, with a value of ‘tag.line-number’.
 
 ‘hfy-weight’
 
 
           (hfy-weight WEIGHT)
 
      Derive a font-weight CSS specifier from an Emacs weight
      specification symbol.
 
 ‘hfy-size’
 
 
           (hfy-size HEIGHT)
 
      Derive a CSS font-size specifier from an Emacs font ‘:height’
      attribute.  Does not cope with the case where height is a function
      to be applied to the height of the underlying font.
 
 ‘hfy-default-header’
 
 
           (hfy-default-header FILE STYLE)
 
      Default value for Seehfy-page-header
 
 ‘hfy-family’
 
 
           (hfy-family FAMILY)
 
      Derives a CSS font-family specifier from an Emacs ‘:family’
      attribute.
 
 ‘hfy-mark-tag-hrefs’
 
 
           (hfy-mark-tag-hrefs SRCDIR FILE)
 
      Mark href start points with the ‘hfy-link’ property (value: href
      string).
 
      Mark href end points with the ‘hfy-endl’ property (value ‘t’).
 
      Avoid overlapping links, and mark links in descending length of tag
      name in order to prevent subtags from usurping supertags; e.g.,
      “term” for “terminal”).
 
 ‘hfy-box’
 
 
           (hfy-box BOX)
 
      Derive CSS border-* attributes from the Emacs ‘:box’ attribute.
 
 ‘hfy-box-to-style’
 
 
           (hfy-box-to-style SPEC)
 
      Convert a complex ‘:box’ Emacs font attribute set to a list of CSS
      border-* attributes.  Don’t call this directly—it is called by
      Seehfy-box when necessary.
 
 ‘hfy-html-enkludge-buffer’
 
 
           (hfy-html-enkludge-buffer)
 
      Mark dangerous ‘["<>]’ characters with the ‘hfy-quoteme’ property.
 
      See also Seehfy-html-dekludge-buffer.
 
 ‘hfy-buffer’
 
 
           (hfy-buffer)
 
      Generate and return an Htmlfontify html output buffer for the
      current buffer.  May trample an existing buffer.
 
 ‘hfy-fontified-p’
 
 
           (hfy-fontified-p)
 
      ‘font-lock’ doesn’t like to say a buffer’s been fontified when in
      batch mode, but we want to know if we should fontify or raw copy,
      so in batch mode we check for non-default face properties.
      Otherwise we test ‘font-lock-mode’ and ‘font-lock-fontified’ for
      truth.
 
 ‘hfy-lookup’
 
 
           (hfy-lookup FACE STYLE)
 
      Where STYLE is a Seehfy-sheet-assoc and FACE is an Emacs face,
      return the relevant CSS style name.
 
 ‘hfy-fontify-buffer’
 
 
           (hfy-fontify-buffer &optional SRCDIR FILE)
 
      Implement the guts of Seehtmlfontify-buffer.
 
 ‘hfy-color’
 
 
           (hfy-color COLOR)
 
      Convert an Emacs :foreground property to a CSS color property.
 
 ‘hfy-flatten-style’
 
 
           (hfy-flatten-style STYLE)
 
DONTPRINTYET       Take STYLE (see Seehfy-face-to-style-i, *note      hfy-face-to-style::) and merge any multiple attributes
      appropriately.  Currently only font-size is merged down to a single
      occurrence—others may need special handling, but I haven’t
      encountered them yet.  Returns a Seehfy-style-assoc.
 
 ‘hfy-size-to-int’
 
 
           (hfy-size-to-int SPEC)
 
      Convert SPEC, a CSS font-size specifier, back to an Emacs ‘:height’
      attribute value.  Used while merging multiple font-size attributes.
 
 ‘hfy-sprintf-stylesheet’
 
 
           (hfy-sprintf-stylesheet CSS FILE)
 
      Generates a header, via Seehfy-page-header, for FILE,
      containing the stylesheet derived from CSS, which is a See
      hfy-sheet-assoc.  Returns a string containing the same.
 
 ‘hfy-relstub’
 
 
           (hfy-relstub FILE &optional START)
 
      Return a ‘../’ stub of the appropriate length for the current
      source tree depth (as determined from FILE).
 
 ‘hfy-compile-face-map’
 
 
           (hfy-compile-face-map)
 
      Compile and return a Seehfy-facemap-assoc for the current
      buffer.
 
 ‘hfy-prepare-index’
 
 
           (hfy-prepare-index SRCDIR DSTDIR)
 
      Return as list of index buffer(s), as determined by See
      hfy-split-index.  Uses Seehfy-prepare-index-i to do this.
 
 ‘hfy-prepare-tag-map’
 
 
           (hfy-prepare-tag-map SRCDIR DSTDIR)
 
      Prepare the counterpart(s) to the index buffer(s)—a list of buffers
      with the same structure, but listing (and linking to) instances of
      tags (as opposed to their definitions).
 
      See also: Seehfy-prepare-index, Seehfy-split-index
 
 ‘hfy-subtract-maps’
 
 
           (hfy-subtract-maps SRCDIR)
 
      Internal function—strips definitions of tags from the instance map.
      See: Seehfy-tags-cache and Seehfy-tags-rmap
 
 ‘hfy-face-to-style-i’
 
 
           (hfy-face-to-style-i FN)
 
      The guts of Seehfy-face-to-style.  FN should be a ‘defface’
      font specification, as returned by ‘face-attr-construct’ or See
      hfy-face-attr-for-class.  Note that this function does not get
      font-sizes right if they are based on inherited modifiers (via the
      :inherit) attribute, and any other modifiers that are cumulative if
      they appear multiple times need to be merged by the user—See
      hfy-flatten-style should do this.
 
 ‘hfy-face-to-css’
 
 
           (hfy-face-to-css FN)
 
      Take FN, a font or ‘defface’ specification (c.f.
      ‘face-attr-construct’) and return a CSS style specification.
 
      See also: Seehfy-face-to-style
 
 ‘hfy-html-quote’
 
 
           (hfy-html-quote CHAR-STRING)
 
      Map a string (usually 1 character long) to an html safe string
      (entity) if need be.
 
 ‘hfy-link-style’
 
 
           (hfy-link-style STYLE-STRING)
 
      Convert the CSS style spec STYLE-STRING to its equivalent hyperlink
      style.
 
      See: Seehfy-link-style-fun.
 
 ‘hfy-p-to-face’
 
 
           (hfy-p-to-face PROPS)
 
      Given PROPS, a list of text-properties, return the value of the
      face property, or ‘nil’.
 
 ‘hfy-box-to-border-assoc’
 
 
           (hfy-box-to-border-assoc SPEC)
 
      Helper function for Seehfy-box-to-style.
 
 ‘hfy-face-attr-for-class’
 
 
           (hfy-face-attr-for-class FACE &optional CLASS)
 
      Return the face attributes for FACE.  If CLASS is set, it must be a
      ‘defface’ alist key [see below].  Prior to version 0.18, the first
      face specification returned by Seehfy-combined-face-spec which
      _didn’t_ clash with CLASS was returned.  In versions from 0.18
      onwards, each font attribute list is scored, and the
      non-conflicting list with the highest score is returned.  (A
      specification with a class of ‘t’ is considered to match any class
      you specify.  This matches Emacs’s behavior when deciding on which
      face attributes to use, to the best of my understanding ).
 
      If CLASS is ‘nil’, then you just get get whatever
      ‘face-attr-construct’ returns; i.e., the current specification in
      effect for FACE.
 
      See Seehfy-display-class for details of valid values for
      CLASS.
 
 ‘hfy-face-at’
 
 
           (hfy-face-at P)
 
      Find face in effect at point P.  If overlays are to be considered
      (see Seehfy-optimizations) then this may return a ‘defface’
      style list of face properties instead of a face symbol.
 
 ‘hfy-bgcol’
 
 
           (hfy-bgcol COLOR)
 
      As per Seehfy-color but for background colors.
 
 ‘hfy-kludge-cperl-mode’
 
 
           (hfy-kludge-cperl-mode)
 
      cperl mode does its best to not do some of its fontification when
      not in a windowing system—we try to trick it...
 
 ‘hfy-href’
 
 
           (hfy-href THIS-FILE DEF-FILES TAG TAG-MAP)
 
      Return a relative href to the tag in question, based on
 
      THIS-FILE Seehfy-link-extn Seehfy-extn DEF-FILES TAG and
      TAG-MAP
 
      THIS-FILE is the current source file DEF-FILES is a list of file
      containing possible link endpoints for TAG TAG is the TAG in
      question TAG-MAP is the entry in Seehfy-tags-cache.
 
 ‘hfy-shell’
 
 
           (hfy-shell)
 
      Returns a best guess at a Bourne compatible shell to use: If the
      current shell doesn’t look promising, fall back to See
      hfy-shell-file-name.
 
 ‘hfy-load-tags-cache’
 
 
           (hfy-load-tags-cache SRCDIR)
 
      Run Seehfy-etags-cmd on SRCDIR: load Seehfy-tags-cache
      and Seehfy-tags-sortl.
 
 ‘hfy-parse-tags-buffer’
 
 
           (hfy-parse-tags-buffer SRCDIR BUFFER)
 
      Parse a BUFFER containing etags formatted output, loading the See
      hfy-tags-cache and Seehfy-tags-sortl entries for SRCDIR.
 
 ‘hfy-interq’
 
 
           (hfy-interq SET-A SET-B)
 
      Return the intersection (using ‘eq’) of 2 lists.
 
 ‘hfy-text-p’
 
 
           (hfy-text-p SRCDIR FILE)
 
      Is SRCDIR/FILE text?  Uses Seehfy-istext-command to determine
      this.
 
 ‘hfy-opt’
 
 
           (hfy-opt SYMBOL)
 
      Is Seehfy-optimizations member SYMBOL set or not?
 
 ‘hfy-dirname’
 
 
           (hfy-dirname FILE)
 
      Return everything preceding the last ‘/’ from a relative filename,
      on the assumption that this will produce a relative directory name.
      Hardly bombproof, but good enough in the context in which it is
      being used.
 
 ‘hfy-html-dekludge-buffer’
 
 
           (hfy-html-dekludge-buffer)
 
      Transform all dangerous characters marked with the ‘hfy-quoteme’
      property using Seehfy-html-quote
 
      See also Seehfy-html-enkludge-buffer.
 
 ‘hfy-copy-and-fontify-file’
 
 
           (hfy-copy-and-fontify-file SRCDIR DSTDIR FILE)
 
      Open FILE in SRCDIR—if fontified, write a fontified copy to DSTDIR
      adding an extension of Seehfy-extn.  Fontification is actually
      done by Seehtmlfontify-buffer.  If the buffer is not
      fontified, just copy it.
 
 ‘hfy-decor’
 
 
           (hfy-decor TAG VAL)
 
      Derive CSS text-decoration specifiers from various Emacs font
      attributes.
 
 ‘hfy-slant’
 
 
           (hfy-slant SLANT)
 
      Derive a font-style CSS specifier from the Emacs :slant
      attribute—CSS does not define the reverse-* styles, so just maps
      those to the regular specifiers.
 
 ‘hfy-tags-for-file’
 
 
           (hfy-tags-for-file SRCDIR FILE)
 
      List of etags tags that have definitions in this FILE.  Looks up
      the tags cache in Seehfy-tags-cache using SRCDIR as the key.
 
 ‘hfy-width’
 
 
           (hfy-width WIDTH)
 
      Convert an Emacs ‘:width’ attribute to a CSS font-stretch
      attribute.