gitextract_qmcpiqtz/ ├── .gitignore ├── Makefile ├── README.en.md ├── README.md ├── bin/ │ └── generate.js ├── fks_chart/ │ ├── bower.json │ ├── bower_components/ │ │ ├── angular/ │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-csp.css │ │ │ ├── angular.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── bower.json │ │ │ └── package.json │ │ ├── angular-marked/ │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-marked.js │ │ │ ├── bower.json │ │ │ ├── example/ │ │ │ │ └── index.html │ │ │ ├── gruntfile.js │ │ │ ├── karma.conf.js │ │ │ ├── package.json │ │ │ └── todo.md │ │ ├── d3/ │ │ │ ├── .bower.json │ │ │ ├── .spmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ └── d3.js │ │ ├── jquery/ │ │ │ ├── .bower.json │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── dist/ │ │ │ │ └── jquery.js │ │ │ └── src/ │ │ │ ├── ajax/ │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var/ │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ ├── ajax.js │ │ │ ├── attributes/ │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ ├── attributes.js │ │ │ ├── callbacks.js │ │ │ ├── core/ │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var/ │ │ │ │ └── rsingleTag.js │ │ │ ├── core.js │ │ │ ├── css/ │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── support.js │ │ │ │ ├── swap.js │ │ │ │ └── var/ │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ └── rnumnonpx.js │ │ │ ├── css.js │ │ │ ├── data/ │ │ │ │ ├── Data.js │ │ │ │ ├── accepts.js │ │ │ │ └── var/ │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ ├── data.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects/ │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ ├── effects.js │ │ │ ├── event/ │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ └── support.js │ │ │ ├── event.js │ │ │ ├── exports/ │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation/ │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── support.js │ │ │ │ └── var/ │ │ │ │ └── rcheckableType.js │ │ │ ├── manipulation.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue/ │ │ │ │ └── delay.js │ │ │ ├── queue.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── sizzle/ │ │ │ │ └── dist/ │ │ │ │ └── sizzle.js │ │ │ ├── traversing/ │ │ │ │ ├── findFilter.js │ │ │ │ └── var/ │ │ │ │ └── rneedsContext.js │ │ │ ├── traversing.js │ │ │ ├── var/ │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ └── wrap.js │ │ └── marked/ │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin/ │ │ │ └── marked │ │ ├── component.json │ │ ├── doc/ │ │ │ ├── broken.md │ │ │ └── todo.md │ │ ├── index.js │ │ ├── lib/ │ │ │ └── marked.js │ │ ├── man/ │ │ │ └── marked.1 │ │ ├── package.json │ │ └── test/ │ │ ├── README │ │ ├── browser/ │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ └── test.js │ │ ├── index.js │ │ ├── new/ │ │ │ ├── autolink_lines.html │ │ │ ├── autolink_lines.text │ │ │ ├── blockquote_list_item.html │ │ │ ├── blockquote_list_item.text │ │ │ ├── case_insensitive_refs.html │ │ │ ├── case_insensitive_refs.text │ │ │ ├── def_blocks.html │ │ │ ├── def_blocks.text │ │ │ ├── double_link.html │ │ │ ├── double_link.text │ │ │ ├── escaped_angles.html │ │ │ ├── escaped_angles.text │ │ │ ├── gfm_break.breaks.html │ │ │ ├── gfm_break.breaks.text │ │ │ ├── gfm_code.html │ │ │ ├── gfm_code.text │ │ │ ├── gfm_code_hr_list.html │ │ │ ├── gfm_code_hr_list.text │ │ │ ├── gfm_del.html │ │ │ ├── gfm_del.text │ │ │ ├── gfm_em.html │ │ │ ├── gfm_em.text │ │ │ ├── gfm_links.html │ │ │ ├── gfm_links.text │ │ │ ├── gfm_tables.html │ │ │ ├── gfm_tables.text │ │ │ ├── hr_list_break.html │ │ │ ├── hr_list_break.text │ │ │ ├── lazy_blockquotes.html │ │ │ ├── lazy_blockquotes.text │ │ │ ├── list_item_text.html │ │ │ ├── list_item_text.text │ │ │ ├── loose_lists.html │ │ │ ├── loose_lists.text │ │ │ ├── main.html │ │ │ ├── main.text │ │ │ ├── nested_code.html │ │ │ ├── nested_code.text │ │ │ ├── nested_em.html │ │ │ ├── nested_em.text │ │ │ ├── nested_square_link.html │ │ │ ├── nested_square_link.text │ │ │ ├── not_a_link.html │ │ │ ├── not_a_link.text │ │ │ ├── ref_paren.html │ │ │ ├── ref_paren.text │ │ │ ├── same_bullet.html │ │ │ ├── same_bullet.text │ │ │ ├── text.smartypants.html │ │ │ ├── text.smartypants.text │ │ │ ├── toplevel_paragraphs.gfm.html │ │ │ ├── toplevel_paragraphs.gfm.text │ │ │ ├── tricky_list.html │ │ │ └── tricky_list.text │ │ ├── original/ │ │ │ ├── amps_and_angles_encoding.html │ │ │ ├── amps_and_angles_encoding.text │ │ │ ├── auto_links.html │ │ │ ├── auto_links.text │ │ │ ├── backslash_escapes.html │ │ │ ├── backslash_escapes.text │ │ │ ├── blockquotes_with_code_blocks.html │ │ │ ├── blockquotes_with_code_blocks.text │ │ │ ├── code_blocks.html │ │ │ ├── code_blocks.text │ │ │ ├── code_spans.html │ │ │ ├── code_spans.text │ │ │ ├── hard_wrapped_paragraphs_with_list_like_lines.html │ │ │ ├── hard_wrapped_paragraphs_with_list_like_lines.text │ │ │ ├── horizontal_rules.html │ │ │ ├── horizontal_rules.text │ │ │ ├── inline_html_advanced.html │ │ │ ├── inline_html_advanced.text │ │ │ ├── inline_html_comments.html │ │ │ ├── inline_html_comments.text │ │ │ ├── inline_html_simple.html │ │ │ ├── inline_html_simple.text │ │ │ ├── links_inline_style.html │ │ │ ├── links_inline_style.text │ │ │ ├── links_reference_style.html │ │ │ ├── links_reference_style.text │ │ │ ├── links_shortcut_references.html │ │ │ ├── links_shortcut_references.text │ │ │ ├── literal_quotes_in_titles.html │ │ │ ├── literal_quotes_in_titles.text │ │ │ ├── markdown_documentation_basics.html │ │ │ ├── markdown_documentation_basics.text │ │ │ ├── markdown_documentation_syntax.html │ │ │ ├── markdown_documentation_syntax.text │ │ │ ├── nested_blockquotes.html │ │ │ ├── nested_blockquotes.text │ │ │ ├── ordered_and_unordered_lists.html │ │ │ ├── ordered_and_unordered_lists.text │ │ │ ├── strong_and_em_together.html │ │ │ ├── strong_and_em_together.text │ │ │ ├── tabs.html │ │ │ ├── tabs.text │ │ │ ├── tidyness.html │ │ │ └── tidyness.text │ │ └── tests/ │ │ ├── amps_and_angles_encoding.html │ │ ├── amps_and_angles_encoding.text │ │ ├── auto_links.html │ │ ├── auto_links.text │ │ ├── autolink_lines.html │ │ ├── autolink_lines.text │ │ ├── backslash_escapes.html │ │ ├── backslash_escapes.text │ │ ├── blockquote_list_item.html │ │ ├── blockquote_list_item.text │ │ ├── blockquotes_with_code_blocks.html │ │ ├── blockquotes_with_code_blocks.text │ │ ├── case_insensitive_refs.html │ │ ├── case_insensitive_refs.text │ │ ├── code_blocks.html │ │ ├── code_blocks.text │ │ ├── code_spans.html │ │ ├── code_spans.text │ │ ├── def_blocks.html │ │ ├── def_blocks.text │ │ ├── double_link.html │ │ ├── double_link.text │ │ ├── escaped_angles.html │ │ ├── escaped_angles.text │ │ ├── gfm_break.breaks.html │ │ ├── gfm_break.breaks.text │ │ ├── gfm_code.html │ │ ├── gfm_code.text │ │ ├── gfm_code_hr_list.html │ │ ├── gfm_code_hr_list.text │ │ ├── gfm_del.html │ │ ├── gfm_del.text │ │ ├── gfm_em.html │ │ ├── gfm_em.text │ │ ├── gfm_links.html │ │ ├── gfm_links.text │ │ ├── gfm_tables.html │ │ ├── gfm_tables.text │ │ ├── hard_wrapped_paragraphs_with_list_like_lines.nogfm.html │ │ ├── hard_wrapped_paragraphs_with_list_like_lines.nogfm.text │ │ ├── horizontal_rules.html │ │ ├── horizontal_rules.text │ │ ├── hr_list_break.html │ │ ├── hr_list_break.text │ │ ├── inline_html_advanced.html │ │ ├── inline_html_advanced.text │ │ ├── inline_html_comments.html │ │ ├── inline_html_comments.text │ │ ├── inline_html_simple.html │ │ ├── inline_html_simple.text │ │ ├── lazy_blockquotes.html │ │ ├── lazy_blockquotes.text │ │ ├── links_inline_style.html │ │ ├── links_inline_style.text │ │ ├── links_reference_style.html │ │ ├── links_reference_style.text │ │ ├── links_shortcut_references.html │ │ ├── links_shortcut_references.text │ │ ├── list_item_text.html │ │ ├── list_item_text.text │ │ ├── literal_quotes_in_titles.html │ │ ├── literal_quotes_in_titles.text │ │ ├── loose_lists.html │ │ ├── loose_lists.text │ │ ├── main.html │ │ ├── main.text │ │ ├── markdown_documentation_basics.html │ │ ├── markdown_documentation_basics.text │ │ ├── markdown_documentation_syntax.html │ │ ├── markdown_documentation_syntax.text │ │ ├── nested_blockquotes.html │ │ ├── nested_blockquotes.text │ │ ├── nested_code.html │ │ ├── nested_code.text │ │ ├── nested_em.html │ │ ├── nested_em.text │ │ ├── nested_square_link.html │ │ ├── nested_square_link.text │ │ ├── not_a_link.html │ │ ├── not_a_link.text │ │ ├── ordered_and_unordered_lists.html │ │ ├── ordered_and_unordered_lists.text │ │ ├── ref_paren.html │ │ ├── ref_paren.text │ │ ├── same_bullet.html │ │ ├── same_bullet.text │ │ ├── strong_and_em_together.html │ │ ├── strong_and_em_together.text │ │ ├── tabs.html │ │ ├── tabs.text │ │ ├── text.smartypants.html │ │ ├── text.smartypants.text │ │ ├── tidyness.html │ │ ├── tidyness.text │ │ ├── toplevel_paragraphs.gfm.html │ │ ├── toplevel_paragraphs.gfm.text │ │ ├── tricky_list.html │ │ └── tricky_list.text │ ├── css/ │ │ └── style.css │ ├── data/ │ │ └── front-end.json │ ├── index.html │ └── js/ │ └── app.js └── package.json