Skip to content
This repository has been archived by the owner on Dec 20, 2017. It is now read-only.

Adding actual parsing and lexing with a new module #224

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@

# Local stuff
local/

/intellij-markdown
4 changes: 2 additions & 2 deletions idea-markdown.iml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module" module-name="intellij-markdown" />
</component>
</module>

</module>
46 changes: 14 additions & 32 deletions idea-markdown.ipr
Original file line number Diff line number Diff line change
Expand Up @@ -97,36 +97,6 @@
<entry_points version="2.0" />
</component>
<component name="IdProvider" IDEtalkID="30F62850CC208662F9BE7D0D7413EF35" />
<component name="InspectionProjectProfileManager">
<profiles>
<profile version="1.0" is_locked="false">
<option name="myName" value="Project Default" />
<option name="myLocal" value="false" />
<inspection_tool class="CssInvalidElementInspection" enabled="false" level="ERROR" enabled_by_default="false" />
<inspection_tool class="CssOptimizeSimilarPropertiesInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
<inspection_tool class="CssUnknownProperty" enabled="true" level="WARNING" enabled_by_default="true">
<option name="myCustomPropertiesEnabled" value="true" />
<option name="myIgnoreVendorSpecificProperties" value="false" />
<option name="myCustomPropertiesList">
<value>
<list size="2">
<item index="0" class="java.lang.String" itemvalue="margin-left-ltr" />
<item index="1" class="java.lang.String" itemvalue="margin-right-rtl" />
</list>
</value>
</option>
</inspection_tool>
<inspection_tool class="Fix shebang" enabled="true" level="WARNING" enabled_by_default="true">/bin/sh#/bin/bash</inspection_tool>
<inspection_tool class="W3CssValidation" enabled="false" level="WARNING" enabled_by_default="false">
<option name="myCssVersion" value="css3" />
<option name="myIgnoreVendorSpecificProperties" value="false" />
</inspection_tool>
</profile>
</profiles>
<option name="PROJECT_PROFILE" value="Project Default" />
<option name="USE_PROJECT_PROFILE" value="true" />
<version value="1.0" />
</component>
<component name="JavadocGenerationManager">
<option name="OUTPUT_DIRECTORY" value="$USER_HOME$/Bureau" />
<option name="OPTION_SCOPE" value="protected" />
Expand Down Expand Up @@ -348,6 +318,7 @@
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/idea-markdown.iml" filepath="$PROJECT_DIR$/idea-markdown.iml" />
<module fileurl="file://$PROJECT_DIR$/intellij-markdown/intellij-markdown.iml" filepath="$PROJECT_DIR$/intellij-markdown/intellij-markdown.iml" />
</modules>
</component>
<component name="ProjectResources">
Expand Down Expand Up @@ -386,7 +357,18 @@
</component>
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="$PROJECT_DIR$/intellij-markdown" vcs="Git" />
</component>
<component name="WebServicesPlugin" addRequiredLibraries="true" />
</project>

<component name="libraryTable">
<library name="KotlinJavaRuntime">
<CLASSES>
<root url="jar://$PROJECT_DIR$/lib/kotlin-runtime.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$PROJECT_DIR$/lib/kotlin-runtime-sources.jar!/" />
</SOURCES>
</library>
</component>
</project>
3 changes: 3 additions & 0 deletions load_parser.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
git clone https://github.com/valich/intellij-markdown

Loading