corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 # Description
2 > This is the default template for bug reports, if you have a more general
3 > issue, question, or request, you may ignore this template and write freeform.
4 >
5 > NOTE:
6 > * Do not include screenshots! This library is a text processor, we need text inputs and outputs for debugging and fixing issues.
7 > * Check the list of open issues before filing a new issue.
8  
9 # Input
10 The code looked like this before beautification:
11 ```
12 <INSERT CODE HERE>
13 ```
14  
15 # Expected Output
16 The code should have looked like this after beautification:
17 ```
18 <INSERT CODE HERE>
19 ```
20  
21 # Actual Output
22 The code actually looked like this after beautification:
23 ```
24 <INSERT CODE HERE>
25 ```
26  
27 # Steps to Reproduce
28  
29  
30 ## Environment
31 OS:
32  
33  
34 ## Settings
35 Example:
36 ```json
37 {
38 "indent_size": 4,
39 "indent_char": " ",
40 "indent_level": 0,
41 "indent_with_tabs": false,
42 "preserve_newlines": true,
43 "max_preserve_newlines": 10,
44 "jslint_happy": false,
45 "space_after_anon_function": false,
46 "brace_style": "collapse,preserve-inline",
47 "keep_array_indentation": false,
48 "keep_function_indentation": false,
49 "space_before_conditional": true,
50 "break_chained_methods": false,
51 "eval_code": false,
52 "unescape_strings": false,
53 "wrap_line_length": 0
54 }
55 ```