File tree Expand file tree Collapse file tree 6 files changed +1
-15
lines changed Expand file tree Collapse file tree 6 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ const validTags = new Set([
60
60
// ignoreTags (treat tag as meaningless wrapper)
61
61
"CHAPTERCONTENT" ,
62
62
"JAVASCRIPT" ,
63
- "NOBR" ,
64
63
"SECTIONCONTENT" ,
65
64
"span" ,
66
65
"SPLIT" ,
Original file line number Diff line number Diff line change @@ -51,15 +51,13 @@ const tagsToRemoveDefault = new Set([
51
51
"NAME" ,
52
52
"LABEL" ,
53
53
"CODEINDEX" ,
54
- "EXPLANATION" ,
55
54
"SHORT_SPACE" ,
56
55
"SHORT_SPACE_AND_ALLOW_BREAK" ,
57
56
"SOFT_HYP" ,
58
57
"WATCH" ,
59
58
"KEEP_TOGETHER" ,
60
59
"START_KEEP_TOGETHER" ,
61
60
"STOP_KEEP_TOGETHER" ,
62
- "NOBREAK" ,
63
61
"SHRINK_PARAGRAPH" ,
64
62
"STRETCH_PARAGRAPH" ,
65
63
"DONT_BREAK_PAGE" ,
@@ -73,7 +71,6 @@ const tagsToRemoveDefault = new Set([
73
71
74
72
const ignoreTagsDefault = new Set ( [
75
73
"CHAPTERCONTENT" ,
76
- "NOBR" ,
77
74
"SPLIT" ,
78
75
"SPLITINLINE" ,
79
76
"JAVASCRIPT"
@@ -549,8 +546,6 @@ const processTextFunctionsSplit = {
549
546
writeTo . push ( "</span>" ) ;
550
547
} ,
551
548
552
- PDF_ONLY : ( node , writeTo ) => { } ,
553
-
554
549
COMMENT : ( node , writeTo ) => {
555
550
writeTo . push ( "<span class='comment'>" ) ;
556
551
recursiveProcessTextHtml ( node . firstChild , writeTo ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ const tagsToRemove = new Set([
22
22
23
23
const ignoreTags = new Set ( [
24
24
"CHAPTERCONTENT" ,
25
- "NOBR" ,
26
25
"span" ,
27
26
"SPLITINLINE" ,
28
27
"JAVASCRIPT"
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ export const tagsToRemove = new Set([
50
50
"KEEP_TOGETHER" ,
51
51
"START_KEEP_TOGETHER" ,
52
52
"STOP_KEEP_TOGETHER" ,
53
- "NOBREAK" ,
54
53
"SHRINK_PARAGRAPH" ,
55
54
"STRETCH_PARAGRAPH" ,
56
55
"DONT_BREAK_PAGE" ,
@@ -63,7 +62,6 @@ export const tagsToRemove = new Set([
63
62
64
63
const ignoreTags = new Set ( [
65
64
"CHAPTERCONTENT" ,
66
- "NOBR" ,
67
65
"SPLIT" ,
68
66
"SPLITINLINE" ,
69
67
"JAVASCRIPT" ,
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ const tagsToRemove = new Set([
52
52
const ignoreTags = new Set ( [
53
53
"CHAPTERCONTENT" ,
54
54
"JAVASCRIPT" ,
55
- "NOBR" ,
56
55
"SECTIONCONTENT" ,
57
56
"span" ,
58
57
"SPLIT" ,
@@ -144,10 +143,6 @@ const processTextFunctionsDefaultLatex = {
144
143
writeTo . push ( "}" ) ;
145
144
} ,
146
145
147
- NOBREAK : ( node , writeTo ) => {
148
- writeTo . push ( "\\nobreak{}" ) ;
149
- } ,
150
-
151
146
SHRINK_PARAGRAPH : ( node , writeTo ) => {
152
147
let lines = node . getAttribute ( "lines" ) ? node . getAttribute ( "lines" ) : "4" ;
153
148
writeTo . push ( "\\looseness=-" + lines + " " ) ;
Original file line number Diff line number Diff line change @@ -521,7 +521,7 @@ square(sqrt(1000));
521
521
<INDEX >special form<SUBINDEX >need for</SUBINDEX ></INDEX >
522
522
special form. <QUOTE >Why can<APOS />t I just
523
523
define it as an ordinary procedure in terms of
524
- <NOBR >< SCHEMEINLINE >cond</SCHEMEINLINE >?</ NOBR > </QUOTE > she asks.
524
+ <SCHEMEINLINE >cond</SCHEMEINLINE >?</QUOTE > she asks.
525
525
Alyssa<APOS />s friend Eva Lu Ator claims this can indeed be done, and
526
526
she defines a new version of <SCHEMEINLINE >if</SCHEMEINLINE >:
527
527
<SNIPPET >
You can’t perform that action at this time.
0 commit comments