File: Vars.pm

package info (click to toggle)
linuxdoc-tools 0.9.86-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,312 kB
  • sloc: ansic: 16,247; perl: 3,769; sh: 1,134; makefile: 813; lex: 566; lisp: 309
file content (27 lines) | stat: -rw-r--r-- 688 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
#  Vars.pm
#
#  Shared variables.
#
#  Copyright (C) 1996, 1997, Cees de Groot
#  Copyright (C)       2020, Agustin Martin
# --------------------------------------------------------

package LinuxDocTools::Vars;

use strict;
use base qw(Exporter);

our @EXPORT = qw(%Formats $global %FmtList $VERSION);
our @EXPORT_OK = qw($lyx_afterslash_sep);

# Import :all to get everything.
our %EXPORT_TAGS = (all => [@EXPORT_OK]);

our $VERSION = sprintf("%d.%02d", q$Revision: 1.1.1.1 $ =~ /(\d+)\.(\d+)/);

# To be used in lib/filters/lyx-preNSGMLS.pl and lib/fmt/fmt_lyx.pl
# Hope nothing uses this string value. If so, make it more complex.
our $lyx_afterslash_sep = "LDT_NBSP_4rX5y;;;";

1;