1# 2# Vars.pm 3# 4# Shared variables. 5# 6# Copyright (C) 1996, 1997, Cees de Groot 7# Copyright (C) 2020, Agustin Martin 8# -------------------------------------------------------- 9 10package LinuxDocTools::Vars; 11 12use strict; 13use base qw(Exporter); 14 15our @EXPORT = qw(%Formats $global %FmtList $VERSION); 16our @EXPORT_OK = qw($lyx_afterslash_sep); 17 18# Import :all to get everything. 19our %EXPORT_TAGS = (all => [@EXPORT_OK]); 20 21our $VERSION = sprintf("%d.%02d", q$Revision: 1.1.1.1 $ =~ /(\d+)\.(\d+)/); 22 23# To be used in lib/filters/lyx-preNSGMLS.pl and lib/fmt/fmt_lyx.pl 24# Hope nothing uses this string value. If so, make it more complex. 25our $lyx_afterslash_sep = "LDT_NBSP_4rX5y;;;"; 26 271; 28