blob: d394d2c7069a43b88fc35c5d7dd1604d17a6c415 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
###############################################################################
#
# Package: NaturalDocs::NDMarkup
#
###############################################################################
#
# A package of support functions for dealing with <NDMarkup>.
#
# Usage and Dependencies:
#
# The package doesn't depend on any Natural Docs packages and is ready to use right away.
#
###############################################################################
# This file is part of Natural Docs, which is Copyright (C) 2003-2008 Greg Valure
# Natural Docs is licensed under the GPL
use strict;
use integer;
package NaturalDocs::NDMarkup;
#
# Function: ConvertAmpChars
#
# Substitutes certain characters with their <NDMarkup> amp chars.
#
# Parameters:
#
# text - The block of text to convert.
#
# Returns:
#
# The converted text block.
#
sub ConvertAmpChars #(text)
{
my ($self, $text) = @_;
$text =~ s/&/&/g;
$text =~ s/</</g;
$text =~ s/>/>/g;
$text =~ s/\"/"/g;
return $text;
};
#
# Function: RestoreAmpChars
#
# Replaces <NDMarkup> amp chars with their original symbols.
#
# Parameters:
#
# text - The text to restore.
#
# Returns:
#
# The restored text.
#
sub RestoreAmpChars #(text)
{
my ($self, $text) = @_;
$text =~ s/"/\"/g;
$text =~ s/>/>/g;
$text =~ s/</</g;
$text =~ s/&/&/g;
return $text;
};
1;
|