classic_subject_line

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "classic_subject_line".
... in classic_subject_line.naml
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
<override_macro name="classic_subject_line" requires="node">
        <n.if.contains_substring string="[n.break_up.subject/]" substring="¬">
              <then>
                   <n.set_var. name="value"><n.break_up.subject/></n.set_var.>
                   <n.if.contains_substring string="[n.break_up.subject/]" substring=" ¬n¬">
                            <then>                                                                
                                <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
                               <img src="http://jsmastronomy.245.s1.nabble.com/file/n588/icone_new.gif" width="32" />&nbsp;<n.jsm_limpamark_new texto="[n.var name='value'/]" />
                               </h2>          
                          </then>
                   </n.if.contains_substring>
                   <n.if.contains_substring string="[n.break_up.subject/]" substring=" ¬¢¬">
                            <then>                                                                
                                <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
                               <img src="http://jsmastronomy.245.s1.nabble.com/file/n588/success.png" width="14" />&nbsp;<n.jsm_limpamark_chkfull texto="[n.var name='value'/]" />
                               </h2>          
                          </then>
                   </n.if.contains_substring>
                   <n.if.contains_substring string="[n.break_up.subject/]" substring=" ¬.¬">
                            <then>                                                                
                                <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
                               <img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconmark.png"  />&nbsp;<n.jsm_limpamark_chknormal texto="[n.var name='value'/]" />
                               </h2>          
                          </then>
                   </n.if.contains_substring>
                   <n.if.contains_substring string="[n.break_up.subject/]" substring=" ¬h¬">
                            <then>                                                                
                                <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
                               <img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconehelp.png" width="16" />&nbsp;<n.jsm_limpamark_chkhelp texto="[n.var name='value'/]" />
                               </h2>          
                          </then>
                   </n.if.contains_substring>
                   <n.if.contains_substring string="[n.break_up.subject/]" substring=" ¬e¬">
                            <then>                                                                
                                <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
                               <img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconexclama.png"  width="16"/>&nbsp;<n.jsm_limpamark_chkexclama texto="[n.var name='value'/]" />
                               </h2>          
                          </then>
                   </n.if.contains_substring>
                   <n.if.contains_substring string="[n.break_up.subject/]" substring=" ¬a¬">
                            <then>                                                                
                                <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
                               <img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconadmin.png"  />&nbsp;<n.jsm_limpamark_chkadm texto="[n.var name='value'/]" />
                               </h2>          
                          </then>
                   </n.if.contains_substring>
                  
              </then>
              <else>
                 <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
                 <n.break_up.subject/>
                 </h2>
             </else>
        </n.if.contains_substring>
</override_macro>
Overrides default macro
... in topic.naml
636
637
638
639
640
<macro name="classic_subject_line" requires="node">
    <h2 class="post-subject float-left adbayes-content" style="width:30%;overflow:visible;font-family:inherit">
        <n.break_up.subject/>
    </h2>
</macro>