save-as-heading
is use the first line as the file name to quickly create or overwrite the file.
Atom Package: https://atom.io/packages/save-as-heading
apm install save-as-heading
- this package is use filename at first line to override or create file.
- or, this package is use file name of heading line (e.g. #) of markdown, override or create file.
- Using markdown and txt, can quickly create a document for each file.
- input the next sentence.
title
foo bar fuga.
...
...
ctrl
+shift
+h
- A file name
title.md
is created or overrided.
to change
.md
toSetting
-Extension
- input the next sentence.
/directory/directory/title
foo bar fuga.
...
...
ctrl
+shift
+h
- A file path
/directory/directory/title.md
is created or overrided. a root of the path is the project folder.
- set a
Setting
-Filename type
isHeadline
. - input the next sentence.
...
title
# head1
foo bar fuga.
...
...
ctrl
+shift
+h
- A file name
head1.md
is created or overrided.
- set a
Setting
-Filename type
isMetadata
. - input the next sentence.
title: This would be wonderful
date: 2018-07-31
publish: true
This is a new file, i'm about to save it with `ctrl+shift+H`.
ctrl
+shift
+h
- A file name
This-would-be-wonderful.md
is created or overrided.
to change
key
in Metadata toSetting
-Key in Metadata
(e.g.%date%-%title%
).
Extension
- save a file name of extension.
- default
.md
.
Filename type
- Firstline
- the first line is used in the filename.
- Headline
- the heading line (e.g. #) of markdown is used in the filename.
- Metadata
- the Markdown Metadata is used in filename. Refer to this setting is
Key in Metadata
.
- the Markdown Metadata is used in filename. Refer to this setting is
- default
Firstline
.
- Firstline
Filename key in Metadata
- set any character enclosed by the percent(
%
) is the key for the filename(e.g.%date%
,%date%-%title%
). - default
%date%
.
- set any character enclosed by the percent(
Show save success notification
- show/hide notification when saved file.
Replace from
/Replace to
Replace from
- replace in title when save a filename(default:
space
). if use multiple chars, separate them with|
(ex:_| |-)
- replace in title when save a filename(default:
Replace to
- replace [
Replace from
] with [Replace to
] in filename when saved.
- replace [
- example 1
Replace from
=(spaces)
,Replace to
=-
saved file path in/directory/first line code
/directory/first-line-code.md
- example 2
Replace from
=(spaces)|,
,Replace to
=-
saved file path in/directory/first line code,to file name
/directory/first-line-code-to-file-name.md
Conversion filename
- convert
Uppercase
Lowercase
Capitalize
in filename when saved. - example
Conversion filename
=Capitalize
saved file path in/directory/first-line-ccode
/directory/First-line-code.md
- convert